R Markdown

Exclude trials where target was not presented.

Exclude other cases where SPE not applicable, namely Response.pos == FALSE

## Loading objects:
##   allDays
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union

Install the mixture modeling R library

#devtools::install_github('alexholcombe/mixRSVP',build_vignettes=TRUE)  #If want latest version
library(mixRSVP)

Set up the experiment-specific parameters

numItemsInStream<- 16 #from their Methods section  
annotateIt<-TRUE
minSPE<- -13 #targetSP = 14, subject reports first letter in stream (1)
maxSPE<- 13 #targetSP = 3 and response position is 16```

Ultimately want to analyze data broken down by: * Group (determines in which serial positions the targets appeared) * Condition (3-day, 2-day, 1-day) * targetSP (formerly known as TargPos (target position this trial)) * Block (epochs of trials basically) * Subject

condtnVariableNames <- c("Group","Condition","targetSP","Subject","Epoch")  

Define function to plot bunch of subjects.

Facets by “Subject+targetSP~Block”, meaning that should break the data down by Group and Condition separately.

library(ggplot2)

plotBunch<- function(df,curves) {
  #Columns are epochs
  #Label rows by Subject+targetSP combinations. Outermost label is Subject, inner is targetSP
  g=ggplot(df, aes(x=SPE)) + facet_grid(Subject+targetSP~Epoch) #,  scales="free_y")
  g<-g+geom_histogram(binwidth=1,color="grey90") + xlim(minSPE,maxSPE)
  g<-g+ geom_text(x=12, y= 33, aes(label = Subject)) #inset subject name/number. Unfortunately it overwrites itself a million times
  g<-g +theme_apa() #+theme(panel.grid.minor=element_blank(),panel.grid.major=element_blank())# hide all gridlines.
  #g<-g+ theme(line=element_blank(), panel.border = element_blank())
  sz=.8
  #Plot the underlying Gaussian , not just the discretized Gaussian. But it's way too tall. I don't know if this is 
  #a scaling problem or what actually is going on.
  #g<-g + geom_line(data=gaussFine,aes(x=x,y=gaussianFreq),color="darkblue",size=1.2)
  
  if (!is.null(curves)) {
    g<-g+ geom_point(data=curves,aes(x=x,y=combinedFitFreq),color="chartreuse3",size=sz*2.5)
    #g<-g+ geom_line(data=curves,aes(x=x,y=guessingFreq),color="yellow",size=sz)
    #Discretized Gaussian
    #g<-g+ geom_line(data=curves,aes(x=x,y=gaussianFreq),color="lightblue",size=sz)
    
    #mixSig - whether mixture model statistically significantly better than guessing
    curves <- dplyr::mutate(curves, mixSig = ifelse(pLRtest <= .05, TRUE, FALSE)) #annotate_fit uses this to color the p-value
    g<- annotate_fit(g,curves) #assumes curvesDf includes efficacy,latency,precision
    #Somehow the which mixSig (TRUE or FALSE) is red and which green is flipped relative to plot_hist_with_fit even though
    #identical commands are used. I haven't been able to work out why.
    #g<- g + scale_color_manual(values=c("red","forestgreen")) #already done in annotate_fit
  }
  return (g)   
}  

Epoch (groups of 3 blocks) is the smallest group of trials that Shin & Junker want a graph for.

So, create epochs out of group triplets, specifically blocks 2-4, 5-7, [skip 8 because practice], 9-11, 12-14, [skip 15 because practice], 16-18, and 19-21

lookupEpoch= data.frame( 
  Epoch=c("practice1", "1","1","1","2","2","2","practice2","3","3","3","4","4","4", "practice3",  "5","5","5","6","6","6"),
  Block=c(1,           2,3,4,         5,6,7,    8,          9,10,11,   12,13,14,     15,     16,17,18, 19,20,21))

allDays <- plyr::join(allDays,lookupEpoch,by='Block') #https://stackoverflow.com/questions/10158617/how-do-i-replace-numeric-codes-in-a-data-frame-with-value-labels-from-a-data-fr?noredirect=1&lq=1

#Add practice TRUE/FALSE column
allDays$practice <- FALSE
allDays<-allDays %>% mutate(practice= ifelse(Epoch=="practice1" | Epoch=="practice2" | Epoch=="practice3", TRUE, FALSE)) #https://stackoverflow.com/questions/24459752/can-dplyr-package-be-used-for-conditional-mutating#24459900

Get ready to plot bunches by fitting data, calculating psychometric curves. will take up pages and pages of NaN warnings.

## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.444812970931848 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0196035870916846 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.45085874477803 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.31511877505999 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0987144047957105 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.42286302391114 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200719027714869 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.0530635670864 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35605482459967 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0173068567225027 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.12353190295092 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.422355060833867 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191977849739361 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.494855629798467 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42795233739057 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.251620458320721 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.460313223282933 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95229772253118 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412401733215895 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.446337597837389 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.52192996799806 -8.77841939123742e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.501404969928918 -8.41837992737519e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483917659878064 -8.76724070097999e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467538954640706 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00136162991138605 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02329814693547 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0659653580754532 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0137846535441534 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39608480186186 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64982221262282 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200038921947816 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0430449527238581 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.266544145660504 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0295986626495617 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38504385410671 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.09578421823695 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0928870864502975 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.781386030242978 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.477382564722941 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0105588177434663 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13909912660919 -8.96703347111172e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7387598820849 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.90374629793456 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297211347524244 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.368385426233827 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.401524780888661 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287970352746224 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.534306566957552 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7525177373737 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40494268869303 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.189171389381691 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.148560282175107 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0809900515955582 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357129289845619 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.232596082184018 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.14237927114808 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.380944834315561 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327103432528435 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0577861373016851 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.31419201990704 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280198969783915 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102362215506196 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0147430765862202 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58225115151407 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494889756806048 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514683959314403 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35099835268225 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122675647933644 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.2874651656352 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.17683188626011 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.606438579216834 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21664813609246 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27455414851238 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362867025655207 -9.00009999995041e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0240506542639574 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34353528209819 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279719733397312 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183710223641684 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.09559224912622 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.734192449912511 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132502750281073 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21265947993722 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0550636935877722 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186451515130943 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.231099771951687 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.382180104903848 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0958336742341843 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46457866412658 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168922259500696 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329815280424971 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.40145962741599 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.814687121744229 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.880620810920382 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.23345610671052 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529314849727275 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325509452759793 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.29712164734585 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.254988234220408 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.277947769931479 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310346521322674 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51806189912507 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199753840109485 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59975252526131 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.77803444034855 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00123942501009333 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33804410329983 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.81417444818456 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.540606859868413 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0442244739138974 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32140656398979 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.145537850428618 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.122864832752775 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345816107552263 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0537704747313813 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210464955746721 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34567811676153 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123036786134547 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31115238209181 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307701650550672 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150491098019128 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426442235832342 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.052103437301759 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17516267076275 -8.74550999722212e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471522211412573 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.50657947086601 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05726734919701 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177375441129712 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365889787051372 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.561346708829885 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182084148318565 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107717097419289 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226449833263531 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.951160900841 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6098046164974 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13596176113173 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165371272784615 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.329372713610029 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.48302824883566 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.415302559299109 -8.85826979496214e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.445400813927302 -9.00009999999345e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0239479669518272 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.168039687908799 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.739122541576966 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.27503488882947 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.734611038257978 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.44203667482618 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.211930647625971 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.040451201939973 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.61888306203231 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.212928100141673 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338560716884448 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.101994519789443 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.28881141387159 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.103685777570952 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.186555241586466 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0626844861944442 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414461361739256 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0412163485441956 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.149493689434875 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387769315211937 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.312159538757775 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.224719554825338 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2532335734718 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.888667287952577 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0646150547669583 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.670698173422724 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.11052511419325 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.155707831582544 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40019214210384 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.132158065380852 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20586419373806 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.207863927384336 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0587068302537974 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.884248881378328 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153953521551959 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188714503624655 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186491272449578 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09346359233962 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.32778046930838 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947827348639424 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0667924246027 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165269892697566 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.408298892924975 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.23075677900144 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.04548435327358 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322857147160611 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.98135678365126 -8.92237502531179e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27946812851549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27946812851549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27946812851549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27946812851549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27946812851549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27946812851549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27946812851549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27946812851549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27946812851549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27946812851549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27946812851549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27946812851549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27946812851549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27946812851549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27946812851549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27946812851549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27946812851549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31313834242379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.31313834242379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.31313834242379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.31313834242379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.31313834242379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.31313834242379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.31313834242379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31313834242379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.31313834242379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.31313834242379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.31313834242379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.31313834242379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.31313834242379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.31313834242379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.31313834242379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.31313834242379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.31313834242379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32997344937794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.32997344937794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.32997344937794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.32997344937794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.32997344937794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.32997344937794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.32997344937794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32997344937794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.32997344937794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.32997344937794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.32997344937794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.32997344937794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.32997344937794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.32997344937794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.32997344937794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.32997344937794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.32997344937794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34680855633209 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34680855633209 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34680855633209 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34680855633209 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34680855633209 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34680855633209 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34680855633209 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34680855633209 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34680855633209 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34680855633209 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34680855633209 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34680855633209 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34680855633209 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34680855633209 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34680855633209 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1955183423793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1955183423793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1955183423793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1955183423793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.07596650814137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.07596650814137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.07596650814137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.07596650814137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.07596650814137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.07596650814137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.07596650814137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.07596650814137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.07596650814137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.07596650814137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.07596650814137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.07596650814137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.07596650814137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.07596650814137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.07596650814137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.07596650814137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.07596650814137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13574242526034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13574242526034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13574242526034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13574242526034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13574242526034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13574242526034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13574242526034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13574242526034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13574242526034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13574242526034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13574242526034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13574242526034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13574242526034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.13574242526034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.13574242526034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.13574242526034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.13574242526034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16563038381982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.16563038381982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16563038381982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16563038381982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16563038381982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16563038381982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16563038381982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16563038381982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16563038381982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16563038381982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16563038381982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16563038381982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16563038381982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16563038381982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16563038381982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16563038381982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16563038381982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.18057436309956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.18057436309956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.18057436309956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.18057436309956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.18057436309956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.18057436309956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.18057436309956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.18057436309956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.18057436309956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.18057436309956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.18057436309956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.18057436309956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.18057436309956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.18057436309956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.18057436309956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.18057436309956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.18057436309956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1955183423793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1955183423793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1955183423793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1955183423793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1955183423793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1955183423793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1955183423793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1955183423793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1955183423793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1955183423793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1955183423793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1955183423793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1955183423793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1955183423793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1955183423793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1955183423793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1955183423793 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.386382730394706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.386382730394706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.386382730394706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.386382730394706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347744457355235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.347744457355235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.347744457355235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.347744457355235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.347744457355235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.347744457355235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347744457355235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.347744457355235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.347744457355235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.347744457355235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.347744457355235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.347744457355235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.347744457355235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.347744457355235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.347744457355235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.347744457355235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.347744457355235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367063593874971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367063593874971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367063593874971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367063593874971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367063593874971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367063593874971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367063593874971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367063593874971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367063593874971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367063593874971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367063593874971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.367063593874971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.367063593874971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.367063593874971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.367063593874971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.367063593874971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.367063593874971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376723162134838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.376723162134838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.376723162134838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.376723162134838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.376723162134838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.376723162134838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376723162134838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.376723162134838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.376723162134838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.376723162134838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.376723162134838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.376723162134838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.376723162134838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.376723162134838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.376723162134838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.376723162134838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.376723162134838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.381552946264772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.381552946264772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.381552946264772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.381552946264772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.381552946264772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.381552946264772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.381552946264772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.381552946264772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.381552946264772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.381552946264772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.381552946264772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.381552946264772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.381552946264772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.381552946264772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.381552946264772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.381552946264772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.381552946264772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.386382730394706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.386382730394706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.386382730394706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.386382730394706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.386382730394706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.386382730394706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.386382730394706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.386382730394706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.386382730394706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.386382730394706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.386382730394706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.386382730394706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.386382730394706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.386382730394706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.386382730394706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.386382730394706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.386382730394706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.255074218051734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.255074218051734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.255074218051734 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.255074218051734 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.280581639856907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.280581639856907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.280581639856907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.280581639856907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.280581639856907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.280581639856907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.280581639856907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.280581639856907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.280581639856907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.280581639856907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.280581639856907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.280581639856907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.280581639856907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.280581639856907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.280581639856907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.280581639856907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.280581639856907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.26782792895432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.26782792895432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.26782792895432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.26782792895432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.26782792895432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.26782792895432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.26782792895432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.26782792895432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.26782792895432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.26782792895432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.26782792895432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.26782792895432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.26782792895432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.26782792895432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.26782792895432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.26782792895432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.26782792895432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.261451073503027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.261451073503027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.261451073503027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.261451073503027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.261451073503027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.261451073503027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.261451073503027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.261451073503027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.261451073503027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.261451073503027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.261451073503027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.261451073503027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.261451073503027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.261451073503027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.261451073503027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.261451073503027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.261451073503027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25826264577738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.25826264577738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.25826264577738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.25826264577738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.25826264577738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.25826264577738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25826264577738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.25826264577738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.25826264577738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.25826264577738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.25826264577738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.25826264577738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.25826264577738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.25826264577738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.25826264577738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.25826264577738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.25826264577738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255074218051734 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.255074218051734 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.255074218051734 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.255074218051734 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.255074218051734 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.255074218051734 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255074218051734 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.255074218051734 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.255074218051734 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.255074218051734 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.255074218051734 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.255074218051734 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.255074218051734 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.255074218051734 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.255074218051734 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.255074218051734 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.255074218051734 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.449656621232234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.449656621232234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.449656621232234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.449656621232234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494622283355458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494622283355458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.494622283355458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.494622283355458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.494622283355458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.494622283355458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.494622283355458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494622283355458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.494622283355458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.494622283355458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.494622283355458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.494622283355458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.494622283355458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.494622283355458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.494622283355458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.494622283355458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.494622283355458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.494622283355458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.472139452293846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.472139452293846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.472139452293846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.472139452293846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.472139452293846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.472139452293846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.472139452293846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.472139452293846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.472139452293846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.472139452293846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.472139452293846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.472139452293846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.472139452293846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.472139452293846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.472139452293846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.472139452293846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.472139452293846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.472139452293846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.46089803676304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.46089803676304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.46089803676304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.46089803676304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.46089803676304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.46089803676304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.46089803676304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.46089803676304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.46089803676304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.46089803676304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.46089803676304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.46089803676304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.46089803676304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.46089803676304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.46089803676304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.46089803676304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.46089803676304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.46089803676304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.455277328997637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.455277328997637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.455277328997637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.455277328997637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.455277328997637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.455277328997637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.455277328997637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.455277328997637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.455277328997637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.455277328997637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.455277328997637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.455277328997637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.455277328997637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.455277328997637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.455277328997637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.455277328997637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.455277328997637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.455277328997637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.449656621232234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.449656621232234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.449656621232234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.449656621232234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.449656621232234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449656621232234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.449656621232234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.449656621232234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.449656621232234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.449656621232234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.449656621232234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.449656621232234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.449656621232234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.449656621232234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.449656621232234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.449656621232234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.358143255162431 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.358143255162431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.358143255162431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.358143255162431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393957580678674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393957580678674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.393957580678674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.393957580678674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393957580678674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393957580678674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393957580678674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393957580678674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393957580678674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393957580678674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393957580678674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393957580678674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393957580678674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393957580678674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393957580678674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393957580678674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393957580678674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393957580678674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.376050417920552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.376050417920552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.376050417920552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.376050417920552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.376050417920552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.376050417920552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.376050417920552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.376050417920552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.376050417920552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.376050417920552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.376050417920552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.376050417920552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.376050417920552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.376050417920552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.376050417920552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.376050417920552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.376050417920552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.376050417920552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.367096836541492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.367096836541492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.367096836541492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.367096836541492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.367096836541492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.367096836541492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.367096836541492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.367096836541492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.367096836541492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.367096836541492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.367096836541492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.367096836541492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.367096836541492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.367096836541492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.367096836541492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.367096836541492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.367096836541492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.367096836541492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362620045851961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362620045851961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.362620045851961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.362620045851961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.362620045851961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.362620045851961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.362620045851961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362620045851961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.362620045851961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.362620045851961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.362620045851961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.362620045851961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.362620045851961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.362620045851961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.362620045851961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.362620045851961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.362620045851961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.362620045851961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.358143255162431 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.358143255162431 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.358143255162431 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.358143255162431 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.358143255162431 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358143255162431 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.358143255162431 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.358143255162431 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.358143255162431 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.358143255162431 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.358143255162431 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.358143255162431 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.358143255162431 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.358143255162431 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.358143255162431 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.358143255162431 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.447275176414939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.447275176414939 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.447275176414939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.447275176414939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492002694056433 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492002694056433 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.492002694056433 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.492002694056433 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.492002694056433 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.492002694056433 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.492002694056433 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492002694056433 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.492002694056433 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.492002694056433 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.492002694056433 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.492002694056433 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.492002694056433 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.492002694056433 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.492002694056433 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.492002694056433 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.492002694056433 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.492002694056433 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469638935235686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469638935235686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.469638935235686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.469638935235686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.469638935235686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.469638935235686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.469638935235686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469638935235686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.469638935235686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.469638935235686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.469638935235686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.469638935235686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.469638935235686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.469638935235686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.469638935235686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.469638935235686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.469638935235686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.469638935235686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458457055825312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458457055825312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.458457055825312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.458457055825312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458457055825312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458457055825312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458457055825312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458457055825312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458457055825312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458457055825312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458457055825312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458457055825312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458457055825312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458457055825312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458457055825312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458457055825312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458457055825312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458457055825312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.452866116120126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.452866116120126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.452866116120126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.452866116120126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.452866116120126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.452866116120126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.452866116120126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.452866116120126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.452866116120126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.452866116120126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.452866116120126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.452866116120126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.452866116120126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.452866116120126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.452866116120126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.452866116120126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.452866116120126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.452866116120126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.447275176414939 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.447275176414939 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.447275176414939 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.447275176414939 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.447275176414939 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447275176414939 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.447275176414939 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.447275176414939 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.447275176414939 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.447275176414939 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.447275176414939 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.447275176414939 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.447275176414939 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.447275176414939 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.447275176414939 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.447275176414939 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.41869879847852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.41869879847852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.41869879847852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.41869879847852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376828918630668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376828918630668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.376828918630668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.376828918630668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.376828918630668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.376828918630668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.376828918630668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376828918630668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.376828918630668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.376828918630668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.376828918630668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.376828918630668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.376828918630668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.376828918630668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.376828918630668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.376828918630668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.376828918630668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.376828918630668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397763858554594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397763858554594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.397763858554594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.397763858554594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.397763858554594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.397763858554594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.397763858554594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397763858554594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.397763858554594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.397763858554594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.397763858554594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.397763858554594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.397763858554594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.397763858554594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.397763858554594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.397763858554594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.397763858554594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.397763858554594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.408231328516557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.408231328516557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.408231328516557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.408231328516557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.408231328516557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.408231328516557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.408231328516557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.408231328516557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.408231328516557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.408231328516557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.408231328516557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.408231328516557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.408231328516557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.408231328516557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.408231328516557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.408231328516557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.408231328516557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.408231328516557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.413465063497538 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.413465063497538 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.413465063497538 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.413465063497538 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.413465063497538 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.413465063497538 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.413465063497538 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.413465063497538 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.413465063497538 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.413465063497538 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.413465063497538 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.413465063497538 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.413465063497538 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.413465063497538 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.413465063497538 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.413465063497538 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.413465063497538 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.413465063497538 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.41869879847852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.41869879847852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.41869879847852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.41869879847852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.41869879847852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.41869879847852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.41869879847852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.41869879847852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.41869879847852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.41869879847852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.41869879847852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.41869879847852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.41869879847852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.41869879847852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.41869879847852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.41869879847852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.303350213961959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.303350213961959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.303350213961959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.303350213961959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273015192565763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273015192565763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.273015192565763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.273015192565763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.273015192565763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.273015192565763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.273015192565763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273015192565763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.273015192565763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.273015192565763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.273015192565763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.273015192565763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.273015192565763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.273015192565763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.273015192565763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.273015192565763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.273015192565763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.273015192565763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.288182703263861 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.288182703263861 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.288182703263861 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.288182703263861 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.288182703263861 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.288182703263861 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.288182703263861 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.288182703263861 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.288182703263861 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.288182703263861 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.288182703263861 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.288182703263861 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.288182703263861 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.288182703263861 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.288182703263861 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.288182703263861 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.288182703263861 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.288182703263861 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.29576645861291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.29576645861291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.29576645861291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.29576645861291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.29576645861291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.29576645861291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.29576645861291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.29576645861291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.29576645861291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.29576645861291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.29576645861291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.29576645861291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.29576645861291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.29576645861291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.29576645861291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.29576645861291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.29576645861291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.29576645861291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299558336287434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299558336287434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.299558336287434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.299558336287434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.299558336287434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.299558336287434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.299558336287434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299558336287434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.299558336287434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.299558336287434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.299558336287434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.299558336287434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.299558336287434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.299558336287434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.299558336287434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.299558336287434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.299558336287434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.299558336287434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.303350213961959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.303350213961959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.303350213961959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.303350213961959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.303350213961959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303350213961959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.303350213961959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.303350213961959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.303350213961959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.303350213961959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.303350213961959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.303350213961959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.303350213961959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.303350213961959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.303350213961959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.303350213961959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0522894098247979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0522894098247979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0522894098247979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0522894098247979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0575183508072777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0575183508072777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0575183508072777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0575183508072777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0575183508072777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0575183508072777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0575183508072777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0575183508072777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0575183508072777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0575183508072777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0575183508072777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0575183508072777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0575183508072777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0575183508072777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0575183508072777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0575183508072777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0575183508072777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0575183508072777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0549038803160378 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0549038803160378 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0549038803160378 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0549038803160378 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0549038803160378 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0549038803160378 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0549038803160378 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0549038803160378 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0549038803160378 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0549038803160378 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0549038803160378 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0549038803160378 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0549038803160378 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0549038803160378 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0549038803160378 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0549038803160378 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0549038803160378 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0549038803160378 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0535966450704179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0535966450704179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0535966450704179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0535966450704179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0535966450704179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0535966450704179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0535966450704179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0535966450704179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0535966450704179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0535966450704179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0535966450704179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0535966450704179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0535966450704179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0535966450704179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0535966450704179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0535966450704179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0535966450704179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0535966450704179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0529430274476079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0529430274476079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0529430274476079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0529430274476079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0529430274476079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0529430274476079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0529430274476079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0529430274476079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0529430274476079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0529430274476079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0529430274476079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0529430274476079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0529430274476079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0529430274476079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0529430274476079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0529430274476079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0529430274476079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0529430274476079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0522894098247979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0522894098247979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0522894098247979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0522894098247979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0522894098247979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0522894098247979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0522894098247979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0522894098247979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0522894098247979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0522894098247979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0522894098247979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0522894098247979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0522894098247979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0522894098247979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0522894098247979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0522894098247979 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.07591190322895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.07591190322895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.07591190322895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.07591190322895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.38350309355184 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.22970749839039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.15280970080967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.11436080201931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.07591190322895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.07591190322895 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.387036113989424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.387036113989424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.387036113989424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.387036113989424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348332502590481 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.348332502590481 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.348332502590481 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.348332502590481 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348332502590481 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.348332502590481 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348332502590481 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.348332502590481 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.348332502590481 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.348332502590481 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.348332502590481 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.348332502590481 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.348332502590481 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.348332502590481 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.348332502590481 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.348332502590481 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.348332502590481 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367684308289953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367684308289953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367684308289953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367684308289953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367684308289953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367684308289953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367684308289953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367684308289953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367684308289953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367684308289953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367684308289953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.367684308289953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.367684308289953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.367684308289953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.367684308289953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.367684308289953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.367684308289953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.377360211139688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.377360211139688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.377360211139688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.377360211139688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.377360211139688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.377360211139688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.377360211139688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.377360211139688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.377360211139688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.377360211139688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.377360211139688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.377360211139688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.377360211139688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.377360211139688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.377360211139688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.377360211139688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.377360211139688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382198162564556 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.382198162564556 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.382198162564556 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.382198162564556 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382198162564556 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382198162564556 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382198162564556 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382198162564556 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382198162564556 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382198162564556 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382198162564556 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382198162564556 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382198162564556 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382198162564556 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382198162564556 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382198162564556 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382198162564556 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387036113989424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387036113989424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387036113989424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387036113989424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387036113989424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387036113989424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387036113989424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387036113989424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387036113989424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387036113989424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387036113989424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387036113989424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387036113989424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.387036113989424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.387036113989424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.387036113989424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.387036113989424 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.15583429846109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.15583429846109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.15583429846109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.15583429846109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04025086861499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.04025086861499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.04025086861499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.04025086861499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.04025086861499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.04025086861499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.04025086861499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04025086861499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.04025086861499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.04025086861499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.04025086861499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.04025086861499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.04025086861499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.04025086861499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.04025086861499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.04025086861499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.04025086861499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09804258353804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.09804258353804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09804258353804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09804258353804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09804258353804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09804258353804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09804258353804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09804258353804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09804258353804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09804258353804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09804258353804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09804258353804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09804258353804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09804258353804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09804258353804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09804258353804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09804258353804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.12693844099957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.12693844099957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.12693844099957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.12693844099957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.12693844099957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.12693844099957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.12693844099957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.12693844099957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.12693844099957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.12693844099957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.12693844099957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.12693844099957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.12693844099957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.12693844099957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.12693844099957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.12693844099957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.12693844099957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14138636973033 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14138636973033 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14138636973033 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14138636973033 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14138636973033 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14138636973033 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14138636973033 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14138636973033 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14138636973033 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14138636973033 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14138636973033 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14138636973033 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14138636973033 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14138636973033 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14138636973033 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14138636973033 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14138636973033 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15583429846109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.15583429846109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15583429846109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15583429846109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15583429846109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15583429846109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15583429846109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15583429846109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15583429846109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.15583429846109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.15583429846109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.15583429846109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.15583429846109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.15583429846109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.15583429846109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.15583429846109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.15583429846109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01756993026236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01756993026236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01756993026236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01756993026236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.915812937236123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.915812937236123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.915812937236123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.915812937236123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.915812937236123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.915812937236123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.915812937236123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.915812937236123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.915812937236123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.915812937236123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.915812937236123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.915812937236123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.915812937236123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.915812937236123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.915812937236123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.915812937236123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.915812937236123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966691433749241 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.966691433749241 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.966691433749241 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.966691433749241 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.966691433749241 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.966691433749241 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.966691433749241 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966691433749241 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.966691433749241 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.966691433749241 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.966691433749241 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.966691433749241 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.966691433749241 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.966691433749241 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.966691433749241 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.966691433749241 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.966691433749241 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.9921306820058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.9921306820058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.9921306820058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.9921306820058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.9921306820058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.9921306820058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.9921306820058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.9921306820058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.9921306820058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.9921306820058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.9921306820058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.9921306820058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.9921306820058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.9921306820058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.9921306820058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.9921306820058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.9921306820058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00485030613408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.00485030613408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.00485030613408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.00485030613408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.00485030613408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.00485030613408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.00485030613408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00485030613408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.00485030613408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.00485030613408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.00485030613408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.00485030613408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.00485030613408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.00485030613408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.00485030613408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.00485030613408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.00485030613408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01756993026236 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.01756993026236 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01756993026236 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01756993026236 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01756993026236 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01756993026236 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01756993026236 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01756993026236 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01756993026236 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01756993026236 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01756993026236 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01756993026236 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01756993026236 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01756993026236 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01756993026236 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01756993026236 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01756993026236 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.903576026253457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.903576026253457 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.903576026253457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.903576026253457 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.813218423628111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.813218423628111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.813218423628111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.813218423628111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.813218423628111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.813218423628111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.813218423628111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.813218423628111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.813218423628111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.813218423628111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.813218423628111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.813218423628111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.813218423628111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.813218423628111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.813218423628111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.813218423628111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.813218423628111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.858397224940784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.858397224940784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.858397224940784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.858397224940784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.858397224940784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.858397224940784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.858397224940784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.858397224940784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.858397224940784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.858397224940784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.858397224940784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.858397224940784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.858397224940784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.858397224940784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.858397224940784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.858397224940784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.858397224940784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880986625597121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.880986625597121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880986625597121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880986625597121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880986625597121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880986625597121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880986625597121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880986625597121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880986625597121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880986625597121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880986625597121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880986625597121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880986625597121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880986625597121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880986625597121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880986625597121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880986625597121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.892281325925289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.892281325925289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.892281325925289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.892281325925289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.892281325925289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.892281325925289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.892281325925289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.892281325925289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.892281325925289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.892281325925289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.892281325925289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.892281325925289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.892281325925289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.892281325925289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.892281325925289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.892281325925289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.892281325925289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.903576026253457 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.903576026253457 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.903576026253457 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.903576026253457 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.903576026253457 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.903576026253457 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.903576026253457 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.903576026253457 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.903576026253457 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.903576026253457 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.903576026253457 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.903576026253457 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.903576026253457 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.903576026253457 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.903576026253457 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.903576026253457 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.903576026253457 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0480448793270286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0480448793270286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0480448793270286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0480448793270286 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0528493672597315 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0528493672597315 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0528493672597315 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0528493672597315 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0528493672597315 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0528493672597315 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0528493672597315 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0528493672597315 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0528493672597315 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0528493672597315 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0528493672597315 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0528493672597315 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0528493672597315 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0528493672597315 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0528493672597315 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0528493672597315 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0528493672597315 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.05044712329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.05044712329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.05044712329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.05044712329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.05044712329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.05044712329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.05044712329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.05044712329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.05044712329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.05044712329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.05044712329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.05044712329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.05044712329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.05044712329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.05044712329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.05044712329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.05044712329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492460013102043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0492460013102043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0492460013102043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0492460013102043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0492460013102043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0492460013102043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492460013102043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0492460013102043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0492460013102043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0492460013102043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0492460013102043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0492460013102043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0492460013102043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0492460013102043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0492460013102043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0492460013102043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0492460013102043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0486454403186165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0486454403186165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0486454403186165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0486454403186165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0486454403186165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0486454403186165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0486454403186165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0486454403186165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0486454403186165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0486454403186165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0486454403186165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0486454403186165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0486454403186165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0486454403186165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0486454403186165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0486454403186165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0486454403186165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0480448793270286 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0480448793270286 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0480448793270286 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0480448793270286 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0480448793270286 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0480448793270286 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0480448793270286 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0480448793270286 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0480448793270286 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0480448793270286 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0480448793270286 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0480448793270286 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0480448793270286 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0480448793270286 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0480448793270286 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0480448793270286 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0480448793270286 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.276615014748479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.276615014748479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.276615014748479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.276615014748479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.248953513273631 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.248953513273631 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.248953513273631 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.248953513273631 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.248953513273631 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.248953513273631 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.248953513273631 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.248953513273631 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.248953513273631 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.248953513273631 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.248953513273631 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.248953513273631 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.248953513273631 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.248953513273631 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.248953513273631 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.248953513273631 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.248953513273631 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.262784264011055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.262784264011055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.262784264011055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.262784264011055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.262784264011055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.262784264011055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.262784264011055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.262784264011055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.262784264011055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.262784264011055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.262784264011055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.262784264011055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.262784264011055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.262784264011055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.262784264011055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.262784264011055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.262784264011055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.269699639379767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.269699639379767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.269699639379767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.269699639379767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.269699639379767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.269699639379767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.269699639379767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.269699639379767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.269699639379767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.269699639379767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.269699639379767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.269699639379767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.269699639379767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.269699639379767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.269699639379767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.269699639379767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.269699639379767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273157327064123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.273157327064123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.273157327064123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.273157327064123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.273157327064123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.273157327064123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273157327064123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.273157327064123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.273157327064123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.273157327064123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.273157327064123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.273157327064123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.273157327064123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.273157327064123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.273157327064123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.273157327064123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.273157327064123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276615014748479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.276615014748479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.276615014748479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.276615014748479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.276615014748479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276615014748479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276615014748479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.276615014748479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.276615014748479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.276615014748479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.276615014748479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.276615014748479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.276615014748479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.276615014748479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.276615014748479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.276615014748479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.276615014748479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.32650758684437 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.32650758684437 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.32650758684437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.32650758684437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293856828159933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.293856828159933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.293856828159933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.293856828159933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293856828159933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293856828159933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293856828159933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.293856828159933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.293856828159933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.293856828159933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.293856828159933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.293856828159933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.293856828159933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.293856828159933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.293856828159933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.293856828159933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.293856828159933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310182207502151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.310182207502151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.310182207502151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.310182207502151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.310182207502151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.310182207502151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310182207502151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.310182207502151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.310182207502151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.310182207502151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.310182207502151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.310182207502151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.310182207502151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.310182207502151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.310182207502151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.310182207502151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.310182207502151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.318344897173261 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.318344897173261 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.318344897173261 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.318344897173261 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.318344897173261 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.318344897173261 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.318344897173261 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.318344897173261 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.318344897173261 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.318344897173261 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.318344897173261 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.318344897173261 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.318344897173261 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.318344897173261 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.318344897173261 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.318344897173261 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.318344897173261 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.322426242008815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.322426242008815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.322426242008815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.322426242008815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.322426242008815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.322426242008815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.322426242008815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.322426242008815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.322426242008815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.322426242008815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.322426242008815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.322426242008815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.322426242008815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.322426242008815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.322426242008815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.322426242008815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.322426242008815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32650758684437 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.32650758684437 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.32650758684437 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.32650758684437 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.32650758684437 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.32650758684437 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32650758684437 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.32650758684437 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.32650758684437 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.32650758684437 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.32650758684437 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.32650758684437 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.32650758684437 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.32650758684437 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.32650758684437 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.32650758684437 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.32650758684437 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0516660670531995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0516660670531995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0516660670531995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0516660670531995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464994603478796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0464994603478796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0464994603478796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0464994603478796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0464994603478796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0464994603478796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464994603478796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0464994603478796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0464994603478796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0464994603478796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0464994603478796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0464994603478796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0464994603478796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0464994603478796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0464994603478796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0464994603478796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0464994603478796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0490827637005396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0490827637005396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0490827637005396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0490827637005396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0490827637005396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0490827637005396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0490827637005396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0490827637005396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0490827637005396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0490827637005396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0490827637005396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0490827637005396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0490827637005396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0490827637005396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0490827637005396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0490827637005396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0490827637005396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0503744153768695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0503744153768695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0503744153768695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0503744153768695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0503744153768695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0503744153768695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0503744153768695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0503744153768695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0503744153768695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0503744153768695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0503744153768695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0503744153768695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0503744153768695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0503744153768695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0503744153768695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0503744153768695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0503744153768695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0510202412150345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0510202412150345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0510202412150345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0510202412150345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0510202412150345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0510202412150345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0510202412150345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0510202412150345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0510202412150345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0510202412150345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0510202412150345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0510202412150345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0510202412150345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0510202412150345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0510202412150345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0510202412150345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0510202412150345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516660670531995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0516660670531995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0516660670531995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0516660670531995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0516660670531995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0516660670531995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516660670531995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0516660670531995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0516660670531995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0516660670531995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0516660670531995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0516660670531995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0516660670531995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0516660670531995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0516660670531995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0516660670531995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0516660670531995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.133003678734837 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.133003678734837 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.133003678734837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.133003678734837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.14630404660832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.14630404660832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.14630404660832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.14630404660832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.14630404660832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.14630404660832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.14630404660832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.14630404660832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.14630404660832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.14630404660832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.14630404660832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.14630404660832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.14630404660832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.14630404660832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.14630404660832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.14630404660832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.14630404660832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.139653862671579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.139653862671579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.139653862671579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.139653862671579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.139653862671579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.139653862671579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.139653862671579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.139653862671579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.139653862671579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.139653862671579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.139653862671579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.139653862671579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.139653862671579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.139653862671579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.139653862671579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.139653862671579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.139653862671579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136328770703208 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.136328770703208 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.136328770703208 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.136328770703208 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.136328770703208 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.136328770703208 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136328770703208 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.136328770703208 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.136328770703208 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.136328770703208 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.136328770703208 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.136328770703208 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.136328770703208 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.136328770703208 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.136328770703208 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.136328770703208 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.136328770703208 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134666224719022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.134666224719022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.134666224719022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.134666224719022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.134666224719022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.134666224719022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134666224719022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.134666224719022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.134666224719022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.134666224719022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.134666224719022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.134666224719022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.134666224719022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.134666224719022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.134666224719022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.134666224719022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.134666224719022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133003678734837 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.133003678734837 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.133003678734837 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.133003678734837 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.133003678734837 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.133003678734837 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133003678734837 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.133003678734837 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.133003678734837 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.133003678734837 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.133003678734837 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.133003678734837 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.133003678734837 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.133003678734837 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.133003678734837 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.133003678734837 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.133003678734837 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59116870176009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59116870176009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59116870176009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59116870176009 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.33205183158408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.33205183158408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.33205183158408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.33205183158408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.33205183158408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.33205183158408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.33205183158408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.33205183158408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.33205183158408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.33205183158408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.33205183158408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.33205183158408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.33205183158408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.33205183158408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.33205183158408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.33205183158408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.33205183158408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.46161026667208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.46161026667208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.46161026667208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.46161026667208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.46161026667208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.46161026667208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.46161026667208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.46161026667208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.46161026667208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.46161026667208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.46161026667208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.46161026667208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.46161026667208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.46161026667208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.46161026667208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.46161026667208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.46161026667208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.52638948421608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.52638948421608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.52638948421608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.52638948421608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.52638948421608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.52638948421608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.52638948421608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.52638948421608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.52638948421608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.52638948421608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.52638948421608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.52638948421608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.52638948421608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.52638948421608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.52638948421608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.52638948421608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.52638948421608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.55877909298808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.55877909298808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.55877909298808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.55877909298808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.55877909298808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.55877909298808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.55877909298808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.55877909298808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.55877909298808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.55877909298808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.55877909298808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.55877909298808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.55877909298808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.55877909298808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.55877909298808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.55877909298808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.55877909298808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59116870176009 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59116870176009 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59116870176009 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59116870176009 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59116870176009 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59116870176009 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59116870176009 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59116870176009 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59116870176009 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59116870176009 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59116870176009 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59116870176009 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59116870176009 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59116870176009 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59116870176009 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59116870176009 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59116870176009 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59929975673115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59929975673115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59929975673115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59929975673115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.33936978105804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.33936978105804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.33936978105804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.33936978105804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.33936978105804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.33936978105804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.33936978105804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.33936978105804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.33936978105804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.33936978105804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.33936978105804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.33936978105804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.33936978105804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.33936978105804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.33936978105804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.33936978105804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.33936978105804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.4693347688946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.4693347688946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.4693347688946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.4693347688946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.4693347688946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.4693347688946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.4693347688946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.4693347688946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.4693347688946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.4693347688946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.4693347688946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.4693347688946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.4693347688946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.4693347688946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.4693347688946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.4693347688946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.4693347688946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.53431726281287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.53431726281287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.53431726281287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.53431726281287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.53431726281287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.53431726281287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.53431726281287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.53431726281287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.53431726281287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.53431726281287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.53431726281287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.53431726281287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.53431726281287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.53431726281287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.53431726281287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.53431726281287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.53431726281287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.56680850977201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.56680850977201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.56680850977201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.56680850977201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.56680850977201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.56680850977201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.56680850977201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.56680850977201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.56680850977201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.56680850977201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.56680850977201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.56680850977201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.56680850977201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.56680850977201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.56680850977201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.56680850977201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.56680850977201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59929975673115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59929975673115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59929975673115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59929975673115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59929975673115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59929975673115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59929975673115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59929975673115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59929975673115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59929975673115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59929975673115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59929975673115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59929975673115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59929975673115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59929975673115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59929975673115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59929975673115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.72935375389046 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.72935375389046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.72935375389046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.72935375389046 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.45641837850142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.45641837850142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.45641837850142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.45641837850142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.45641837850142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.45641837850142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.45641837850142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.45641837850142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.45641837850142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.45641837850142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.45641837850142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.45641837850142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.45641837850142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.45641837850142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.45641837850142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.45641837850142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.45641837850142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59288606619594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59288606619594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59288606619594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59288606619594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59288606619594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59288606619594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59288606619594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59288606619594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59288606619594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59288606619594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59288606619594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59288606619594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59288606619594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59288606619594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59288606619594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59288606619594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59288606619594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6611199100432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6611199100432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.6611199100432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6611199100432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.6611199100432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6611199100432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6611199100432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6611199100432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.6611199100432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6611199100432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.6611199100432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.6611199100432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.6611199100432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.6611199100432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.6611199100432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.6611199100432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.6611199100432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.69523683196683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.69523683196683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.69523683196683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.69523683196683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.69523683196683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.69523683196683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.69523683196683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.69523683196683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.69523683196683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.69523683196683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.69523683196683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.69523683196683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.69523683196683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.69523683196683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.69523683196683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.69523683196683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.69523683196683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72935375389046 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.72935375389046 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.72935375389046 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.72935375389046 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.72935375389046 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.72935375389046 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.72935375389046 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.72935375389046 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.72935375389046 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72935375389046 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.72935375389046 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.72935375389046 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.72935375389046 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.72935375389046 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.72935375389046 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.72935375389046 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.72935375389046 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.159218277149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.159218277149 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.159218277149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.159218277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.27514010486389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.27514010486389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.27514010486389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.27514010486389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.27514010486389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.27514010486389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.27514010486389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.27514010486389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.27514010486389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.27514010486389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.27514010486389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.27514010486389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.27514010486389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.27514010486389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.27514010486389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.27514010486389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.27514010486389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.21717919100645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.21717919100645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.21717919100645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.21717919100645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.21717919100645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.21717919100645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.21717919100645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.21717919100645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.21717919100645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.21717919100645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.21717919100645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.21717919100645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.21717919100645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.21717919100645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.21717919100645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.21717919100645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.21717919100645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.18819873407772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.18819873407772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.18819873407772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.18819873407772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.18819873407772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.18819873407772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.18819873407772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.18819873407772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.18819873407772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.18819873407772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.18819873407772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.18819873407772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.18819873407772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.18819873407772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.18819873407772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.18819873407772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.18819873407772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.17370850561336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.17370850561336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.17370850561336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.17370850561336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.17370850561336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.17370850561336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.17370850561336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.17370850561336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.17370850561336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.17370850561336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.17370850561336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.17370850561336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.17370850561336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.17370850561336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.17370850561336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.17370850561336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.17370850561336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.159218277149 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.159218277149 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.159218277149 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.159218277149 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.159218277149 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.159218277149 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.159218277149 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.159218277149 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.159218277149 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.159218277149 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.159218277149 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.159218277149 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.159218277149 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.159218277149 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.159218277149 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.159218277149 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.159218277149 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.946043987518206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.946043987518206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.946043987518206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.946043987518206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04064838627003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.04064838627003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04064838627003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04064838627003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04064838627003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04064838627003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04064838627003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04064838627003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04064838627003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04064838627003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.04064838627003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.04064838627003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.04064838627003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.04064838627003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.04064838627003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.04064838627003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.04064838627003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.993346186894117 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.993346186894117 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.993346186894117 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.993346186894117 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.993346186894117 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.993346186894117 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.993346186894117 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.993346186894117 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.993346186894117 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.993346186894117 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.993346186894117 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.993346186894117 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.993346186894117 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.993346186894117 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.993346186894117 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.993346186894117 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.993346186894117 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.969695087206161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.969695087206161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.969695087206161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.969695087206161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.969695087206161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.969695087206161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.969695087206161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.969695087206161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.969695087206161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.969695087206161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.969695087206161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.969695087206161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.969695087206161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.969695087206161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.969695087206161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.969695087206161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.969695087206161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.957869537362184 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.957869537362184 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.957869537362184 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.957869537362184 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.957869537362184 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.957869537362184 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.957869537362184 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.957869537362184 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.957869537362184 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.957869537362184 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.957869537362184 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.957869537362184 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.957869537362184 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.957869537362184 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.957869537362184 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.957869537362184 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.957869537362184 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946043987518206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.946043987518206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.946043987518206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.946043987518206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.946043987518206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946043987518206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.946043987518206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.946043987518206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.946043987518206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.946043987518206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.946043987518206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.946043987518206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.946043987518206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.946043987518206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.946043987518206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.946043987518206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.946043987518206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.930416055746603 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.930416055746603 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.930416055746603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.930416055746603 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.02345766132126 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.02345766132126 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.02345766132126 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.02345766132126 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.02345766132126 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.02345766132126 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.02345766132126 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.02345766132126 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.02345766132126 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.02345766132126 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.02345766132126 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.02345766132126 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.02345766132126 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.02345766132126 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.02345766132126 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.02345766132126 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.02345766132126 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.976936858533933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.976936858533933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.976936858533933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.976936858533933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.976936858533933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.976936858533933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.976936858533933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.976936858533933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.976936858533933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.976936858533933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.976936858533933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.976936858533933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.976936858533933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.976936858533933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.976936858533933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.976936858533933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.976936858533933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.953676457140268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.953676457140268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.953676457140268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.953676457140268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.953676457140268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.953676457140268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.953676457140268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.953676457140268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.953676457140268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.953676457140268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.953676457140268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.953676457140268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.953676457140268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.953676457140268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.953676457140268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.953676457140268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.953676457140268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942046256443435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.942046256443435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.942046256443435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.942046256443435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.942046256443435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942046256443435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.942046256443435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.942046256443435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.942046256443435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.942046256443435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.942046256443435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.942046256443435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.942046256443435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.942046256443435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.942046256443435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.942046256443435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.942046256443435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930416055746603 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.930416055746603 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.930416055746603 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.930416055746603 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.930416055746603 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930416055746603 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.930416055746603 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.930416055746603 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.930416055746603 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.930416055746603 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.930416055746603 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.930416055746603 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.930416055746603 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.930416055746603 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.930416055746603 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.930416055746603 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.930416055746603 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0580428926358452 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0580428926358452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0580428926358452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0580428926358452 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0522386033722606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0522386033722606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0522386033722606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0522386033722606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0522386033722606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0522386033722606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0522386033722606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0522386033722606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0522386033722606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0522386033722606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0522386033722606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0522386033722606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0522386033722606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0522386033722606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0522386033722606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0522386033722606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0522386033722606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0551407480040529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0551407480040529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0551407480040529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0551407480040529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0551407480040529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0551407480040529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0551407480040529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0551407480040529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0551407480040529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0551407480040529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0551407480040529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0551407480040529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0551407480040529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0551407480040529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0551407480040529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0551407480040529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0551407480040529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056591820319949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.056591820319949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.056591820319949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.056591820319949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.056591820319949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.056591820319949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056591820319949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.056591820319949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.056591820319949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.056591820319949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.056591820319949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.056591820319949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.056591820319949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.056591820319949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.056591820319949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.056591820319949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.056591820319949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573173564778971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0573173564778971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0573173564778971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0573173564778971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0573173564778971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0573173564778971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573173564778971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0573173564778971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0573173564778971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0573173564778971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0573173564778971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0573173564778971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0573173564778971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0573173564778971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0573173564778971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0573173564778971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0573173564778971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0580428926358452 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0580428926358452 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0580428926358452 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0580428926358452 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0580428926358452 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0580428926358452 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0580428926358452 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0580428926358452 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0580428926358452 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0580428926358452 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0580428926358452 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0580428926358452 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0580428926358452 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0580428926358452 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0580428926358452 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0580428926358452 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0580428926358452 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.29449171062731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.29449171062731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.29449171062731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.29449171062731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16504253956457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.16504253956457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16504253956457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16504253956457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16504253956457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16504253956457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16504253956457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16504253956457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16504253956457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16504253956457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16504253956457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16504253956457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16504253956457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16504253956457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16504253956457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16504253956457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16504253956457 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22976712509594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.22976712509594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22976712509594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22976712509594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22976712509594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22976712509594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22976712509594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22976712509594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22976712509594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22976712509594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22976712509594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22976712509594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22976712509594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22976712509594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22976712509594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22976712509594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22976712509594 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.26212941786162 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.26212941786162 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.26212941786162 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.26212941786162 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.26212941786162 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.26212941786162 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.26212941786162 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.26212941786162 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.26212941786162 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.26212941786162 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.26212941786162 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.26212941786162 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.26212941786162 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.26212941786162 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.26212941786162 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.26212941786162 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.26212941786162 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27831056424446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27831056424446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27831056424446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27831056424446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27831056424446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27831056424446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27831056424446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27831056424446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27831056424446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27831056424446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27831056424446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27831056424446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27831056424446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27831056424446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27831056424446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27831056424446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27831056424446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29449171062731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.29449171062731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.29449171062731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.29449171062731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.29449171062731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.29449171062731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.29449171062731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29449171062731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.29449171062731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.29449171062731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.29449171062731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.29449171062731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.29449171062731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.29449171062731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.29449171062731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.29449171062731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.29449171062731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40811342846793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40811342846793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40811342846793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40811342846793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.26730208562114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.26730208562114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.26730208562114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.26730208562114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.26730208562114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.26730208562114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.26730208562114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.26730208562114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.26730208562114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.26730208562114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.26730208562114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.26730208562114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.26730208562114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.26730208562114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.26730208562114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.26730208562114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.26730208562114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33770775704453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.33770775704453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.33770775704453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.33770775704453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.33770775704453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.33770775704453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.33770775704453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33770775704453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.33770775704453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.33770775704453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.33770775704453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.33770775704453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.33770775704453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.33770775704453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.33770775704453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.33770775704453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.33770775704453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.37291059275623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.37291059275623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.37291059275623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.37291059275623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.37291059275623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.37291059275623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.37291059275623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.37291059275623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.37291059275623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.37291059275623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.37291059275623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.37291059275623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.37291059275623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.37291059275623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.37291059275623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.37291059275623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.37291059275623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.39051201061208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.39051201061208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.39051201061208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.39051201061208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.39051201061208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.39051201061208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.39051201061208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.39051201061208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.39051201061208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.39051201061208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.39051201061208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.39051201061208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.39051201061208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.39051201061208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.39051201061208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.39051201061208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.39051201061208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40811342846793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.40811342846793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40811342846793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40811342846793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40811342846793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40811342846793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40811342846793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40811342846793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40811342846793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40811342846793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40811342846793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40811342846793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40811342846793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40811342846793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40811342846793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40811342846793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40811342846793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.835852679331516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.835852679331516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.835852679331516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.835852679331516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.752267411398365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.752267411398365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.752267411398365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.752267411398365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.752267411398365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.752267411398365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.752267411398365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.752267411398365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.752267411398365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.752267411398365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.752267411398365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.752267411398365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.752267411398365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.752267411398365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.752267411398365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.752267411398365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.752267411398365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.79406004536494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.79406004536494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.79406004536494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.79406004536494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.79406004536494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.79406004536494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.79406004536494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.79406004536494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.79406004536494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.79406004536494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.79406004536494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.79406004536494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.79406004536494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.79406004536494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.79406004536494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.79406004536494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.79406004536494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814956362348228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.814956362348228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814956362348228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814956362348228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814956362348228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814956362348228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814956362348228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814956362348228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814956362348228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814956362348228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814956362348228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814956362348228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814956362348228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814956362348228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814956362348228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814956362348228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814956362348228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.825404520839872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.825404520839872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.825404520839872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.825404520839872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.825404520839872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.825404520839872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.825404520839872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.825404520839872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.825404520839872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.825404520839872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.825404520839872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.825404520839872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.825404520839872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.825404520839872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.825404520839872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.825404520839872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.825404520839872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.835852679331516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.835852679331516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.835852679331516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.835852679331516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.835852679331516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.835852679331516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.835852679331516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.835852679331516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.835852679331516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.835852679331516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.835852679331516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.835852679331516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.835852679331516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.835852679331516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.835852679331516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.835852679331516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.835852679331516 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.15869917780818 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.15869917780818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.15869917780818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.15869917780818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.142829260027362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.142829260027362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.142829260027362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.142829260027362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.142829260027362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.142829260027362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.142829260027362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.142829260027362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.142829260027362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.142829260027362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.142829260027362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.142829260027362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.142829260027362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.142829260027362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.142829260027362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.142829260027362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.142829260027362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.142829260027362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150764218917771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150764218917771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.150764218917771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.150764218917771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.150764218917771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.150764218917771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.150764218917771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150764218917771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.150764218917771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.150764218917771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.150764218917771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.150764218917771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.150764218917771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.150764218917771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.150764218917771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.150764218917771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.150764218917771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.150764218917771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.154731698362976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.154731698362976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.154731698362976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.154731698362976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.154731698362976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.154731698362976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.154731698362976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.154731698362976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.154731698362976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.154731698362976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.154731698362976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.154731698362976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.154731698362976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.154731698362976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.154731698362976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.154731698362976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.154731698362976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.154731698362976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.156715438085578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.156715438085578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.156715438085578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.156715438085578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.156715438085578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.156715438085578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.156715438085578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.156715438085578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.156715438085578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.156715438085578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.156715438085578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.156715438085578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.156715438085578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.156715438085578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.156715438085578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.156715438085578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.156715438085578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.156715438085578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.15869917780818 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.15869917780818 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.15869917780818 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.15869917780818 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.15869917780818 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15869917780818 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.15869917780818 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.15869917780818 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.15869917780818 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.15869917780818 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.15869917780818 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.15869917780818 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.15869917780818 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.15869917780818 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.15869917780818 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.15869917780818 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.324366269386006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.324366269386006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.324366269386006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.324366269386006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.356802896324606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.356802896324606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.356802896324606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.356802896324606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.356802896324606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.356802896324606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.356802896324606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.356802896324606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.356802896324606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.356802896324606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.356802896324606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.356802896324606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.356802896324606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.356802896324606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.356802896324606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.356802896324606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.356802896324606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.356802896324606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340584582855306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340584582855306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.340584582855306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.340584582855306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.340584582855306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.340584582855306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.340584582855306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340584582855306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.340584582855306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.340584582855306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.340584582855306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.340584582855306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.340584582855306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.340584582855306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.340584582855306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.340584582855306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.340584582855306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.340584582855306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332475426120656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332475426120656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.332475426120656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.332475426120656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.332475426120656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.332475426120656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.332475426120656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332475426120656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332475426120656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.332475426120656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.332475426120656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.332475426120656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.332475426120656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.332475426120656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.332475426120656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.332475426120656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.332475426120656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.332475426120656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328420847753331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328420847753331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328420847753331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328420847753331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328420847753331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328420847753331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328420847753331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328420847753331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328420847753331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328420847753331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328420847753331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328420847753331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328420847753331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328420847753331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328420847753331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328420847753331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328420847753331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.328420847753331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.324366269386006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324366269386006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324366269386006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324366269386006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324366269386006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324366269386006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324366269386006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324366269386006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324366269386006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324366269386006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324366269386006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324366269386006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324366269386006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324366269386006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324366269386006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.324366269386006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.162920768545323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.162920768545323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.162920768545323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.162920768545323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146628691690791 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146628691690791 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146628691690791 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146628691690791 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146628691690791 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146628691690791 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146628691690791 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146628691690791 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146628691690791 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146628691690791 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146628691690791 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146628691690791 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146628691690791 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146628691690791 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146628691690791 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146628691690791 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146628691690791 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.146628691690791 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.154774730118057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.154774730118057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.154774730118057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.154774730118057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.154774730118057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.154774730118057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.154774730118057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.154774730118057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.154774730118057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.154774730118057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.154774730118057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.154774730118057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.154774730118057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.154774730118057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.154774730118057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.154774730118057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.154774730118057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.154774730118057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15884774933169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15884774933169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.15884774933169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.15884774933169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.15884774933169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.15884774933169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.15884774933169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15884774933169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.15884774933169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.15884774933169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.15884774933169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.15884774933169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.15884774933169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.15884774933169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.15884774933169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.15884774933169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.15884774933169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.15884774933169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.160884258938507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.160884258938507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.160884258938507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.160884258938507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.160884258938507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.160884258938507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.160884258938507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.160884258938507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.160884258938507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.160884258938507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.160884258938507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.160884258938507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.160884258938507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.160884258938507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.160884258938507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.160884258938507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.160884258938507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.160884258938507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162920768545323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162920768545323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162920768545323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162920768545323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162920768545323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162920768545323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162920768545323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162920768545323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162920768545323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162920768545323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.162920768545323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.162920768545323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.162920768545323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.162920768545323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.162920768545323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.162920768545323 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11717576840264 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11717576840264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11717576840264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11717576840264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.80545819156237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.96131697998251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.03924637419257 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.07821107129761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11717576840264 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11717576840264 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0729733452097527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0729733452097527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0729733452097527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0729733452097527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0656760106887775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0656760106887775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0656760106887775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0656760106887775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0656760106887775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0656760106887775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0656760106887775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0656760106887775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0656760106887775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0656760106887775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0656760106887775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0656760106887775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0656760106887775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0656760106887775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0656760106887775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0656760106887775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0656760106887775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0693246779492651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0693246779492651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0693246779492651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0693246779492651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0693246779492651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0693246779492651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0693246779492651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0693246779492651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0693246779492651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0693246779492651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0693246779492651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0693246779492651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0693246779492651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0693246779492651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0693246779492651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0693246779492651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0693246779492651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0711490115795089 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0711490115795089 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0711490115795089 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0711490115795089 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0711490115795089 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0711490115795089 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0711490115795089 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0711490115795089 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0711490115795089 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0711490115795089 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0711490115795089 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0711490115795089 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0711490115795089 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0711490115795089 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0711490115795089 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0711490115795089 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0711490115795089 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0720611783946308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0720611783946308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0720611783946308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0720611783946308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0720611783946308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0720611783946308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0720611783946308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0720611783946308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0720611783946308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0720611783946308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0720611783946308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0720611783946308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0720611783946308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0720611783946308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0720611783946308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0720611783946308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0720611783946308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0729733452097527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0729733452097527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0729733452097527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0729733452097527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0729733452097527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0729733452097527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0729733452097527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0729733452097527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0729733452097527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0729733452097527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0729733452097527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0729733452097527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0729733452097527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0729733452097527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0729733452097527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0729733452097527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0729733452097527 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.379848460067795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.379848460067795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.379848460067795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.379848460067795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.417833306074574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.417833306074574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.417833306074574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.417833306074574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.417833306074574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.417833306074574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.417833306074574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.417833306074574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.417833306074574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.417833306074574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.417833306074574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.417833306074574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.417833306074574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.417833306074574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.417833306074574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.417833306074574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.417833306074574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398840883071184 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.398840883071184 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.398840883071184 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398840883071184 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398840883071184 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398840883071184 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398840883071184 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398840883071184 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.398840883071184 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.398840883071184 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398840883071184 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.398840883071184 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.398840883071184 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.398840883071184 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.398840883071184 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.398840883071184 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.398840883071184 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38934467156949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.38934467156949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.38934467156949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.38934467156949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.38934467156949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.38934467156949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38934467156949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.38934467156949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.38934467156949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.38934467156949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.38934467156949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.38934467156949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.38934467156949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.38934467156949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.38934467156949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.38934467156949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.38934467156949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384596565818642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.384596565818642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.384596565818642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.384596565818642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.384596565818642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.384596565818642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384596565818642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.384596565818642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.384596565818642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.384596565818642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.384596565818642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.384596565818642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.384596565818642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.384596565818642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.384596565818642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.384596565818642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.384596565818642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379848460067795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.379848460067795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.379848460067795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.379848460067795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.379848460067795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.379848460067795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379848460067795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.379848460067795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.379848460067795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.379848460067795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.379848460067795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.379848460067795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.379848460067795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.379848460067795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.379848460067795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.379848460067795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.379848460067795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.217315360996731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.217315360996731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.217315360996731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.217315360996731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195583824897058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.195583824897058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.195583824897058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.195583824897058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.195583824897058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.195583824897058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195583824897058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.195583824897058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.195583824897058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.195583824897058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.195583824897058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.195583824897058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.195583824897058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.195583824897058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.195583824897058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.195583824897058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.195583824897058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.206449592946895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.206449592946895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.206449592946895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.206449592946895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.206449592946895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.206449592946895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.206449592946895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.206449592946895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.206449592946895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.206449592946895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.206449592946895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.206449592946895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.206449592946895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.206449592946895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.206449592946895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.206449592946895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.206449592946895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211882476971813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.211882476971813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.211882476971813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.211882476971813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211882476971813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211882476971813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211882476971813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211882476971813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211882476971813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211882476971813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211882476971813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211882476971813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211882476971813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211882476971813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211882476971813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211882476971813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211882476971813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.214598918984272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.214598918984272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.214598918984272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.214598918984272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.214598918984272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.214598918984272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.214598918984272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.214598918984272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.214598918984272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.214598918984272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.214598918984272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.214598918984272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.214598918984272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.214598918984272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.214598918984272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.214598918984272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.214598918984272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217315360996731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.217315360996731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.217315360996731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.217315360996731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.217315360996731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.217315360996731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217315360996731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.217315360996731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.217315360996731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.217315360996731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.217315360996731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.217315360996731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.217315360996731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.217315360996731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.217315360996731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.217315360996731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.217315360996731 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.96508951224833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.96508951224833 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.96508951224833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.96508951224833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.5685805610235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.76683503663592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86596227444213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.91552589334523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.96508951224833 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.96508951224833 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.99999544007078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.99999544007078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.99999544007078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.99999544007078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.5999958960637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.5999958960637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.5999958960637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.5999958960637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.5999958960637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.5999958960637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5999958960637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.5999958960637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.5999958960637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.5999958960637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.5999958960637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.5999958960637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.5999958960637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.5999958960637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.5999958960637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.5999958960637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.5999958960637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.79999566806724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.79999566806724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.79999566806724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.79999566806724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.79999566806724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.79999566806724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.79999566806724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.79999566806724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.79999566806724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.79999566806724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.79999566806724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.79999566806724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.79999566806724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.79999566806724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.79999566806724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.79999566806724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.79999566806724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.89999555406901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.89999555406901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.89999555406901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.89999555406901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.89999555406901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.89999555406901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.89999555406901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.89999555406901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.89999555406901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.89999555406901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.89999555406901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.89999555406901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.89999555406901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.89999555406901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.89999555406901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.89999555406901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.89999555406901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.94999549706989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.94999549706989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.94999549706989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.94999549706989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.94999549706989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.94999549706989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.94999549706989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.94999549706989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.94999549706989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.94999549706989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.94999549706989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.94999549706989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.94999549706989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.94999549706989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.94999549706989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.94999549706989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.94999549706989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99999544007078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99999544007078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.99999544007078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.99999544007078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.99999544007078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.99999544007078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.99999544007078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.99999544007078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.99999544007078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.99999544007078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99999544007078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.99999544007078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.99999544007078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.99999544007078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.99999544007078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.99999544007078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.99999544007078 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0297921101445207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0297921101445207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0297921101445207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0297921101445207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0268128991300686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0283025046372946 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0290473073909076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0294197087677141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0297921101445207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209668436107639 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209668436107639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209668436107639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209668436107639 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.230635279718403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.220151857913021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21491014701033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212289291558985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209668436107639 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322331243371663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322331243371663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322331243371663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322331243371663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.354564367708829 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.338447805540246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.330389524455955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.326360383913809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322331243371663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322331243371663 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.94652722502408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.94652722502408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.94652722502408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.94652722502408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.34117994752648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.34117994752648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.34117994752648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.34117994752648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.34117994752648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.34117994752648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.34117994752648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.34117994752648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.34117994752648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.34117994752648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.34117994752648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.34117994752648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.34117994752648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.34117994752648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.34117994752648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.34117994752648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.34117994752648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.14385358627528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.14385358627528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.14385358627528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.14385358627528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.14385358627528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.14385358627528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.14385358627528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.14385358627528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.14385358627528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.14385358627528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.14385358627528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.14385358627528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.14385358627528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.14385358627528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.14385358627528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.14385358627528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.14385358627528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.04519040564968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.04519040564968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.04519040564968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.04519040564968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.04519040564968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.04519040564968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.04519040564968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.04519040564968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.04519040564968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.04519040564968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.04519040564968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.04519040564968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.04519040564968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.04519040564968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.04519040564968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.04519040564968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.04519040564968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99585881533688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.99585881533688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.99585881533688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99585881533688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99585881533688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99585881533688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99585881533688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99585881533688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99585881533688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99585881533688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99585881533688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99585881533688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99585881533688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99585881533688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99585881533688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99585881533688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99585881533688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.94652722502408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.94652722502408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.94652722502408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.94652722502408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.94652722502408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.94652722502408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.94652722502408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.94652722502408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.94652722502408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.94652722502408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.94652722502408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.94652722502408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.94652722502408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.94652722502408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.94652722502408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.94652722502408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.94652722502408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.74662280765059 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.74662280765059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.74662280765059 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.74662280765059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.47196052688553 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.47196052688553 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.47196052688553 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.47196052688553 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.47196052688553 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.47196052688553 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.47196052688553 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.47196052688553 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.47196052688553 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.47196052688553 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.47196052688553 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.47196052688553 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.47196052688553 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.47196052688553 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.47196052688553 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.47196052688553 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.47196052688553 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.60929166726806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.60929166726806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.60929166726806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.60929166726806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.60929166726806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.60929166726806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.60929166726806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.60929166726806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.60929166726806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.60929166726806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.60929166726806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.60929166726806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.60929166726806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.60929166726806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.60929166726806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.60929166726806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.60929166726806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.67795723745932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.67795723745932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.67795723745932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.67795723745932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.67795723745932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.67795723745932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.67795723745932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.67795723745932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.67795723745932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.67795723745932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.67795723745932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.67795723745932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.67795723745932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.67795723745932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.67795723745932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.67795723745932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.67795723745932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.71229002255495 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.71229002255495 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.71229002255495 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.71229002255495 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.71229002255495 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.71229002255495 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.71229002255495 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.71229002255495 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71229002255495 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.71229002255495 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.71229002255495 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.71229002255495 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.71229002255495 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.71229002255495 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.71229002255495 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.71229002255495 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.71229002255495 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.74662280765059 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.74662280765059 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.74662280765059 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.74662280765059 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.74662280765059 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.74662280765059 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.74662280765059 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.74662280765059 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.74662280765059 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.74662280765059 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.74662280765059 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.74662280765059 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.74662280765059 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.74662280765059 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.74662280765059 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.74662280765059 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.74662280765059 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.14896988734613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.14896988734613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.14896988734613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.14896988734613 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.83407289861152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.83407289861152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.83407289861152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.83407289861152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.83407289861152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.83407289861152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.83407289861152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.83407289861152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.83407289861152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.83407289861152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.83407289861152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.83407289861152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.83407289861152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.83407289861152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.83407289861152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.83407289861152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.83407289861152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.99152139297883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.99152139297883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.99152139297883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.99152139297883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.99152139297883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.99152139297883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.99152139297883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99152139297883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99152139297883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.99152139297883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.99152139297883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.99152139297883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.99152139297883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.99152139297883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.99152139297883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.99152139297883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.99152139297883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.07024564016248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.07024564016248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.07024564016248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.07024564016248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.07024564016248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.07024564016248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.07024564016248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.07024564016248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.07024564016248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.07024564016248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.07024564016248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.07024564016248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.07024564016248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.07024564016248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.07024564016248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.07024564016248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.07024564016248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.10960776375431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.10960776375431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.10960776375431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.10960776375431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.10960776375431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.10960776375431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.10960776375431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.10960776375431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.10960776375431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.10960776375431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.10960776375431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.10960776375431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.10960776375431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.10960776375431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.10960776375431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.10960776375431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.10960776375431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.14896988734613 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.14896988734613 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.14896988734613 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.14896988734613 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.14896988734613 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.14896988734613 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.14896988734613 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.14896988734613 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.14896988734613 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.14896988734613 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.14896988734613 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.14896988734613 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.14896988734613 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.14896988734613 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.14896988734613 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.14896988734613 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.14896988734613 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483591628570341 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483591628570341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483591628570341 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483591628570341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.531950791427375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.531950791427375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.531950791427375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.531950791427375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.531950791427375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.531950791427375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.531950791427375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.531950791427375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.531950791427375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.531950791427375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.531950791427375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.531950791427375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.531950791427375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.531950791427375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.531950791427375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.531950791427375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.531950791427375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.507771209998858 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.507771209998858 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.507771209998858 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.507771209998858 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.507771209998858 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.507771209998858 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.507771209998858 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.507771209998858 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.507771209998858 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.507771209998858 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.507771209998858 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.507771209998858 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.507771209998858 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.507771209998858 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.507771209998858 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.507771209998858 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.507771209998858 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4956814192846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.4956814192846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.4956814192846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.4956814192846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.4956814192846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.4956814192846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.4956814192846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4956814192846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.4956814192846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.4956814192846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.4956814192846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.4956814192846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.4956814192846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.4956814192846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.4956814192846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.4956814192846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.4956814192846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.48963652392747 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.48963652392747 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.48963652392747 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.48963652392747 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.48963652392747 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.48963652392747 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.48963652392747 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.48963652392747 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.48963652392747 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.48963652392747 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.48963652392747 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.48963652392747 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.48963652392747 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.48963652392747 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.48963652392747 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.48963652392747 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.48963652392747 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483591628570341 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483591628570341 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483591628570341 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483591628570341 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483591628570341 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483591628570341 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483591628570341 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483591628570341 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483591628570341 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483591628570341 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483591628570341 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483591628570341 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483591628570341 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483591628570341 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483591628570341 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483591628570341 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483591628570341 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439504444425763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439504444425763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439504444425763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439504444425763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.48345488886834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.48345488886834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.48345488886834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.48345488886834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.48345488886834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.48345488886834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.48345488886834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.48345488886834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.48345488886834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.48345488886834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.48345488886834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.48345488886834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.48345488886834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.48345488886834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.48345488886834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.48345488886834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.48345488886834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461479666647052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.461479666647052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.461479666647052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.461479666647052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.461479666647052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.461479666647052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.461479666647052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461479666647052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.461479666647052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.461479666647052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.461479666647052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.461479666647052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.461479666647052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.461479666647052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.461479666647052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.461479666647052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.461479666647052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450492055536407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.450492055536407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.450492055536407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.450492055536407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.450492055536407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.450492055536407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.450492055536407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450492055536407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.450492055536407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.450492055536407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.450492055536407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.450492055536407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.450492055536407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.450492055536407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.450492055536407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.450492055536407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.450492055536407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444998249981085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.444998249981085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.444998249981085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.444998249981085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444998249981085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444998249981085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444998249981085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444998249981085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444998249981085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444998249981085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444998249981085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444998249981085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444998249981085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444998249981085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444998249981085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444998249981085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444998249981085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439504444425763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439504444425763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439504444425763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439504444425763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439504444425763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439504444425763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439504444425763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439504444425763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439504444425763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439504444425763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439504444425763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439504444425763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439504444425763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439504444425763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439504444425763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439504444425763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439504444425763 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.123792248952554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.123792248952554 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.123792248952554 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.123792248952554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.136171473847809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.129981861400182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.126887055176368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.125339652064461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.123792248952554 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.392559715841742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.392559715841742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.392559715841742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.392559715841742 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.353303744257568 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.372931730049655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382745722945698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.38765271939372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.392559715841742 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165607156169071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165607156169071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165607156169071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165607156169071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149046440552164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.157326798360618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.161466977264845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163537066716958 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165607156169071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165607156169071 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.472759600492588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.472759600492588 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.472759600492588 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.472759600492588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.425483640443329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.449121620467959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.460940610480274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.466850105486431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472759600492588 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.472759600492588 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.35745927518707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.35745927518707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.35745927518707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.35745927518707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321713347668363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.321713347668363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.321713347668363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.321713347668363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321713347668363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321713347668363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321713347668363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321713347668363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321713347668363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321713347668363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321713347668363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321713347668363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.321713347668363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.321713347668363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.321713347668363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.321713347668363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.321713347668363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339586311427717 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.339586311427717 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.339586311427717 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.339586311427717 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.339586311427717 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.339586311427717 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.339586311427717 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339586311427717 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.339586311427717 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.339586311427717 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.339586311427717 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.339586311427717 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.339586311427717 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.339586311427717 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.339586311427717 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.339586311427717 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.339586311427717 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348522793307393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.348522793307393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.348522793307393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.348522793307393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.348522793307393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348522793307393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.348522793307393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348522793307393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.348522793307393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.348522793307393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.348522793307393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.348522793307393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.348522793307393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.348522793307393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.348522793307393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.348522793307393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.348522793307393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.352991034247232 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.352991034247232 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.352991034247232 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.352991034247232 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.352991034247232 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.352991034247232 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.352991034247232 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.352991034247232 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.352991034247232 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.352991034247232 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.352991034247232 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.352991034247232 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.352991034247232 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.352991034247232 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.352991034247232 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.352991034247232 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.352991034247232 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35745927518707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.35745927518707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.35745927518707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.35745927518707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.35745927518707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.35745927518707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.35745927518707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35745927518707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.35745927518707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.35745927518707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.35745927518707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.35745927518707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.35745927518707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.35745927518707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.35745927518707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.35745927518707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.35745927518707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.463203856772228 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.463203856772228 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.463203856772228 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.463203856772228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.416883471095005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.416883471095005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.416883471095005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.416883471095005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.416883471095005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.416883471095005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.416883471095005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.416883471095005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.416883471095005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.416883471095005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.416883471095005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.416883471095005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.416883471095005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.416883471095005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.416883471095005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.416883471095005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.416883471095005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440043663933616 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.440043663933616 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.440043663933616 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.440043663933616 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.440043663933616 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.440043663933616 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.440043663933616 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440043663933616 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.440043663933616 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.440043663933616 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.440043663933616 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.440043663933616 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.440043663933616 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.440043663933616 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.440043663933616 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.440043663933616 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.440043663933616 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451623760352922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.451623760352922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.451623760352922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.451623760352922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.451623760352922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.451623760352922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.451623760352922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451623760352922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.451623760352922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.451623760352922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.451623760352922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.451623760352922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.451623760352922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.451623760352922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.451623760352922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.451623760352922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.451623760352922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.457413808562575 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.457413808562575 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.457413808562575 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.457413808562575 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.457413808562575 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.457413808562575 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.457413808562575 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.457413808562575 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.457413808562575 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.457413808562575 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.457413808562575 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.457413808562575 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.457413808562575 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.457413808562575 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.457413808562575 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.457413808562575 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.457413808562575 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.463203856772228 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.463203856772228 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.463203856772228 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.463203856772228 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.463203856772228 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.463203856772228 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.463203856772228 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.463203856772228 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.463203856772228 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.463203856772228 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.463203856772228 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.463203856772228 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.463203856772228 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.463203856772228 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.463203856772228 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.463203856772228 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.463203856772228 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.367001620908741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.367001620908741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.367001620908741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.367001620908741 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.330301458817867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.330301458817867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.330301458817867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.330301458817867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.330301458817867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.330301458817867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.330301458817867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.330301458817867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.330301458817867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.330301458817867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.330301458817867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.330301458817867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.330301458817867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.330301458817867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.330301458817867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.330301458817867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.330301458817867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348651539863304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.348651539863304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.348651539863304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.348651539863304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.348651539863304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348651539863304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.348651539863304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348651539863304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.348651539863304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.348651539863304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.348651539863304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.348651539863304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.348651539863304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.348651539863304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.348651539863304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.348651539863304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.348651539863304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357826580386023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357826580386023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357826580386023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357826580386023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357826580386023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357826580386023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357826580386023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357826580386023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357826580386023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357826580386023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357826580386023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357826580386023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357826580386023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357826580386023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357826580386023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357826580386023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357826580386023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362414100647382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362414100647382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362414100647382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362414100647382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362414100647382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362414100647382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362414100647382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362414100647382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362414100647382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362414100647382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362414100647382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362414100647382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362414100647382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362414100647382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362414100647382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362414100647382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362414100647382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367001620908741 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367001620908741 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367001620908741 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367001620908741 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367001620908741 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367001620908741 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367001620908741 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367001620908741 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367001620908741 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367001620908741 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367001620908741 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367001620908741 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.367001620908741 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.367001620908741 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.367001620908741 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.367001620908741 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.367001620908741 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.178265807003147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.178265807003147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.178265807003147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.178265807003147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.160439226302832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.160439226302832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.160439226302832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.160439226302832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.160439226302832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.160439226302832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.160439226302832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.160439226302832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.160439226302832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.160439226302832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.160439226302832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.160439226302832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.160439226302832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.160439226302832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.160439226302832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.160439226302832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.160439226302832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16935251665299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.16935251665299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.16935251665299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.16935251665299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.16935251665299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.16935251665299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.16935251665299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16935251665299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.16935251665299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.16935251665299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.16935251665299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.16935251665299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.16935251665299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.16935251665299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.16935251665299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.16935251665299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.16935251665299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173809161828068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.173809161828068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.173809161828068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.173809161828068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.173809161828068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.173809161828068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.173809161828068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173809161828068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.173809161828068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.173809161828068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.173809161828068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.173809161828068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.173809161828068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.173809161828068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.173809161828068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.173809161828068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.173809161828068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.176037484415608 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.176037484415608 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.176037484415608 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.176037484415608 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.176037484415608 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.176037484415608 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.176037484415608 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.176037484415608 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.176037484415608 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.176037484415608 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.176037484415608 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.176037484415608 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.176037484415608 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.176037484415608 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.176037484415608 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.176037484415608 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.176037484415608 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.178265807003147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.178265807003147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.178265807003147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.178265807003147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.178265807003147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.178265807003147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.178265807003147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.178265807003147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.178265807003147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.178265807003147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.178265807003147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.178265807003147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.178265807003147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.178265807003147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.178265807003147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.178265807003147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.178265807003147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0729156439749563 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0729156439749563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0729156439749563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0729156439749563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0802072083724519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0802072083724519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0802072083724519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0802072083724519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0802072083724519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0802072083724519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0802072083724519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0802072083724519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0802072083724519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0802072083724519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0802072083724519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0802072083724519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0802072083724519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0802072083724519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0802072083724519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0802072083724519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0802072083724519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0765614261737041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0765614261737041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0765614261737041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0765614261737041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0765614261737041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0765614261737041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0765614261737041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0765614261737041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0765614261737041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0765614261737041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0765614261737041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0765614261737041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0765614261737041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0765614261737041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0765614261737041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0765614261737041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0765614261737041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0747385350743302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0747385350743302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0747385350743302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0747385350743302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0747385350743302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0747385350743302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0747385350743302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0747385350743302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0747385350743302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0747385350743302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0747385350743302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0747385350743302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0747385350743302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0747385350743302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0747385350743302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0747385350743302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0747385350743302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738270895246433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0738270895246433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0738270895246433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0738270895246433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0738270895246433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0738270895246433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0738270895246433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738270895246433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0738270895246433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0738270895246433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0738270895246433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0738270895246433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0738270895246433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0738270895246433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0738270895246433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0738270895246433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0738270895246433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729156439749563 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0729156439749563 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0729156439749563 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0729156439749563 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0729156439749563 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0729156439749563 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0729156439749563 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729156439749563 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0729156439749563 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0729156439749563 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0729156439749563 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0729156439749563 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0729156439749563 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0729156439749563 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0729156439749563 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0729156439749563 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0729156439749563 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.77890700051167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.77890700051167 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.77890700051167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.77890700051167 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05679770056284 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.05679770056284 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.05679770056284 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.05679770056284 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05679770056284 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.05679770056284 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.05679770056284 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.05679770056284 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.05679770056284 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.05679770056284 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.05679770056284 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.05679770056284 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.05679770056284 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.05679770056284 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.05679770056284 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.05679770056284 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.05679770056284 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.91785235053725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.91785235053725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.91785235053725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.91785235053725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.91785235053725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.91785235053725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.91785235053725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.91785235053725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.91785235053725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.91785235053725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.91785235053725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.91785235053725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.91785235053725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.91785235053725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.91785235053725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.91785235053725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.91785235053725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84837967552446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.84837967552446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.84837967552446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.84837967552446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84837967552446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.84837967552446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.84837967552446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.84837967552446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.84837967552446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.84837967552446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.84837967552446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.84837967552446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.84837967552446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.84837967552446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.84837967552446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.84837967552446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.84837967552446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.81364333801807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.81364333801807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.81364333801807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.81364333801807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.81364333801807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.81364333801807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.81364333801807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.81364333801807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.81364333801807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.81364333801807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.81364333801807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.81364333801807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.81364333801807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.81364333801807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.81364333801807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.81364333801807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.81364333801807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77890700051167 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.77890700051167 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.77890700051167 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.77890700051167 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77890700051167 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.77890700051167 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.77890700051167 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77890700051167 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.77890700051167 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.77890700051167 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.77890700051167 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.77890700051167 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.77890700051167 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.77890700051167 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.77890700051167 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.77890700051167 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.77890700051167 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.89999175257479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.89999175257479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.89999175257479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.89999175257479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.18999092783227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.18999092783227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.18999092783227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.18999092783227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.18999092783227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.18999092783227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18999092783227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18999092783227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18999092783227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.18999092783227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.18999092783227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.18999092783227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.18999092783227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.18999092783227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.18999092783227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.18999092783227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.18999092783227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.04499134020353 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.04499134020353 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.04499134020353 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.04499134020353 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.04499134020353 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.04499134020353 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.04499134020353 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.04499134020353 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.04499134020353 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.04499134020353 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.04499134020353 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.04499134020353 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.04499134020353 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.04499134020353 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.04499134020353 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.04499134020353 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.04499134020353 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.97249154638916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.97249154638916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.97249154638916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.97249154638916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.97249154638916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.97249154638916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.97249154638916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.97249154638916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.97249154638916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.97249154638916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.97249154638916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.97249154638916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.97249154638916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.97249154638916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.97249154638916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.97249154638916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.97249154638916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.93624164948198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.93624164948198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.93624164948198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.93624164948198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.93624164948198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.93624164948198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.93624164948198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.93624164948198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.93624164948198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.93624164948198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.93624164948198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.93624164948198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.93624164948198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.93624164948198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.93624164948198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.93624164948198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.93624164948198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89999175257479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.89999175257479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.89999175257479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.89999175257479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89999175257479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.89999175257479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.89999175257479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89999175257479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.89999175257479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.89999175257479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.89999175257479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.89999175257479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.89999175257479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.89999175257479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.89999175257479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.89999175257479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.89999175257479 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.1868648063761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.1868648063761 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.1868648063761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.1868648063761 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.96817832573849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.96817832573849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.96817832573849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.96817832573849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.96817832573849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.96817832573849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.96817832573849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.96817832573849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.96817832573849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.96817832573849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.96817832573849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.96817832573849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.96817832573849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.96817832573849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.96817832573849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.96817832573849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.96817832573849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0775215660573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.0775215660573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.0775215660573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.0775215660573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.0775215660573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.0775215660573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.0775215660573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.0775215660573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.0775215660573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0775215660573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.0775215660573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.0775215660573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.0775215660573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.0775215660573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.0775215660573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.0775215660573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.0775215660573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1321931862167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.1321931862167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.1321931862167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.1321931862167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.1321931862167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.1321931862167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.1321931862167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1321931862167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.1321931862167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1321931862167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.1321931862167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.1321931862167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.1321931862167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.1321931862167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.1321931862167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.1321931862167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.1321931862167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1595289962964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.1595289962964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.1595289962964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.1595289962964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.1595289962964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.1595289962964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.1595289962964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1595289962964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.1595289962964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1595289962964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.1595289962964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.1595289962964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.1595289962964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.1595289962964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.1595289962964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.1595289962964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.1595289962964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1868648063761 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.1868648063761 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.1868648063761 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.1868648063761 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.1868648063761 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.1868648063761 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.1868648063761 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1868648063761 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.1868648063761 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1868648063761 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.1868648063761 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.1868648063761 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.1868648063761 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.1868648063761 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.1868648063761 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.1868648063761 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.1868648063761 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3003526253109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3003526253109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3003526253109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3003526253109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.07031736277981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.07031736277981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.07031736277981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.07031736277981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.07031736277981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.07031736277981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.07031736277981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.07031736277981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.07031736277981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.07031736277981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.07031736277981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.07031736277981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.07031736277981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.07031736277981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.07031736277981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.07031736277981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.07031736277981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.18533499404535 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.18533499404535 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.18533499404535 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.18533499404535 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.18533499404535 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.18533499404535 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.18533499404535 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.18533499404535 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.18533499404535 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.18533499404535 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.18533499404535 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.18533499404535 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.18533499404535 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.18533499404535 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.18533499404535 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.18533499404535 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.18533499404535 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.24284380967813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.24284380967813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.24284380967813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.24284380967813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.24284380967813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.24284380967813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.24284380967813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.24284380967813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.24284380967813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.24284380967813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.24284380967813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.24284380967813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.24284380967813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.24284380967813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.24284380967813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.24284380967813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.24284380967813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.27159821749451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.27159821749451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.27159821749451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.27159821749451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.27159821749451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.27159821749451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.27159821749451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.27159821749451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.27159821749451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.27159821749451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.27159821749451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.27159821749451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.27159821749451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.27159821749451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.27159821749451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.27159821749451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.27159821749451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3003526253109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.3003526253109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.3003526253109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3003526253109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3003526253109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3003526253109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3003526253109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3003526253109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3003526253109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3003526253109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3003526253109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3003526253109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3003526253109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3003526253109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3003526253109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3003526253109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3003526253109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28500398239659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28500398239659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28500398239659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28500398239659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.05650358415693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.05650358415693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.05650358415693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.05650358415693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.05650358415693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.05650358415693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.05650358415693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.05650358415693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.05650358415693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.05650358415693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.05650358415693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.05650358415693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.05650358415693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.05650358415693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.05650358415693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.05650358415693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.05650358415693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.17075378327676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.17075378327676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.17075378327676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.17075378327676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.17075378327676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.17075378327676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.17075378327676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.17075378327676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.17075378327676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.17075378327676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.17075378327676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.17075378327676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.17075378327676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.17075378327676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.17075378327676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.17075378327676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.17075378327676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.22787888283668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.22787888283668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.22787888283668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.22787888283668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.22787888283668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.22787888283668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.22787888283668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.22787888283668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.22787888283668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.22787888283668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.22787888283668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.22787888283668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.22787888283668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.22787888283668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.22787888283668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.22787888283668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.22787888283668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.25644143261664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.25644143261664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.25644143261664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.25644143261664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.25644143261664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.25644143261664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.25644143261664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.25644143261664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.25644143261664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.25644143261664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.25644143261664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.25644143261664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.25644143261664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.25644143261664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.25644143261664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.25644143261664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.25644143261664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28500398239659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28500398239659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28500398239659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28500398239659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28500398239659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28500398239659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28500398239659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28500398239659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28500398239659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28500398239659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28500398239659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28500398239659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28500398239659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28500398239659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28500398239659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28500398239659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28500398239659 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.454841706981279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.454841706981279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.454841706981279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.454841706981279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.500325877679407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.500325877679407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.500325877679407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.500325877679407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.500325877679407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.500325877679407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.500325877679407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.500325877679407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.500325877679407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.500325877679407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.500325877679407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.500325877679407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.500325877679407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.500325877679407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.500325877679407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.500325877679407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.500325877679407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477583792330343 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.477583792330343 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.477583792330343 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.477583792330343 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.477583792330343 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.477583792330343 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.477583792330343 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477583792330343 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.477583792330343 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.477583792330343 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.477583792330343 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.477583792330343 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.477583792330343 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.477583792330343 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.477583792330343 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.477583792330343 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.477583792330343 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.466212749655811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.466212749655811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.466212749655811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.466212749655811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.466212749655811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.466212749655811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.466212749655811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.466212749655811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.466212749655811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.466212749655811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.466212749655811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.466212749655811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.466212749655811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.466212749655811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.466212749655811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.466212749655811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.466212749655811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460527228318545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.460527228318545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.460527228318545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.460527228318545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460527228318545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460527228318545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460527228318545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460527228318545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460527228318545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460527228318545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460527228318545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460527228318545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460527228318545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460527228318545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460527228318545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460527228318545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460527228318545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.454841706981279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.454841706981279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.454841706981279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.454841706981279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.454841706981279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.454841706981279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.454841706981279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.454841706981279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.454841706981279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.454841706981279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.454841706981279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.454841706981279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.454841706981279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.454841706981279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.454841706981279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.454841706981279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.454841706981279 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.01077084601071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.01077084601071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.01077084601071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.01077084601071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.70969376140964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.70969376140964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.70969376140964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.70969376140964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.70969376140964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.70969376140964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.70969376140964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.70969376140964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.70969376140964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.70969376140964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.70969376140964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.70969376140964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.70969376140964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.70969376140964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.70969376140964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.70969376140964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.70969376140964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.86023230371018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.86023230371018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.86023230371018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.86023230371018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.86023230371018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.86023230371018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.86023230371018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.86023230371018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.86023230371018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.86023230371018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.86023230371018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.86023230371018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.86023230371018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.86023230371018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.86023230371018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.86023230371018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.86023230371018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.93550157486045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.93550157486045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.93550157486045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.93550157486045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.93550157486045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.93550157486045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.93550157486045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.93550157486045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.93550157486045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.93550157486045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.93550157486045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.93550157486045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.93550157486045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.93550157486045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.93550157486045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.93550157486045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.93550157486045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.97313621043558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.97313621043558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.97313621043558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.97313621043558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.97313621043558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.97313621043558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.97313621043558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.97313621043558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.97313621043558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.97313621043558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.97313621043558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.97313621043558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.97313621043558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.97313621043558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.97313621043558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.97313621043558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.97313621043558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01077084601071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.01077084601071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.01077084601071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.01077084601071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.01077084601071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.01077084601071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.01077084601071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01077084601071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.01077084601071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.01077084601071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01077084601071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.01077084601071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.01077084601071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.01077084601071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.01077084601071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.01077084601071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.01077084601071 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.2709903795708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.2709903795708 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.2709903795708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.2709903795708 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.94389134161372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.94389134161372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.94389134161372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.94389134161372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.94389134161372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.94389134161372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.94389134161372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.94389134161372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94389134161372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.94389134161372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.94389134161372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.94389134161372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.94389134161372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.94389134161372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.94389134161372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.94389134161372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.94389134161372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.10744086059226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.10744086059226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.10744086059226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.10744086059226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.10744086059226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.10744086059226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.10744086059226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.10744086059226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.10744086059226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.10744086059226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.10744086059226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.10744086059226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.10744086059226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.10744086059226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.10744086059226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.10744086059226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.10744086059226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.18921562008153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.18921562008153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.18921562008153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.18921562008153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.18921562008153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.18921562008153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.18921562008153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.18921562008153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.18921562008153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.18921562008153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.18921562008153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.18921562008153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.18921562008153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.18921562008153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.18921562008153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.18921562008153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.18921562008153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.23010299982617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.23010299982617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.23010299982617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.23010299982617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.23010299982617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.23010299982617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23010299982617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23010299982617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.23010299982617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.23010299982617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.23010299982617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.23010299982617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.23010299982617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.23010299982617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.23010299982617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.23010299982617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.23010299982617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.2709903795708 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.2709903795708 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.2709903795708 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.2709903795708 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.2709903795708 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.2709903795708 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.2709903795708 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.2709903795708 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.2709903795708 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.2709903795708 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.2709903795708 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.2709903795708 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.2709903795708 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.2709903795708 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.2709903795708 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.2709903795708 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.2709903795708 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.7550939699503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.7550939699503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.7550939699503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.7550939699503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.47958457295527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.47958457295527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.47958457295527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.47958457295527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.47958457295527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.47958457295527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.47958457295527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.47958457295527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.47958457295527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.47958457295527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.47958457295527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.47958457295527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.47958457295527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.47958457295527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.47958457295527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.47958457295527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.47958457295527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61733927145278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.61733927145278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.61733927145278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.61733927145278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.61733927145278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.61733927145278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.61733927145278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61733927145278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.61733927145278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.61733927145278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61733927145278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.61733927145278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.61733927145278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.61733927145278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.61733927145278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.61733927145278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.61733927145278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.68621662070154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.68621662070154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.68621662070154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.68621662070154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.68621662070154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.68621662070154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.68621662070154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.68621662070154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.68621662070154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.68621662070154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.68621662070154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.68621662070154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.68621662070154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.68621662070154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.68621662070154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.68621662070154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.68621662070154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72065529532592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.72065529532592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.72065529532592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.72065529532592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.72065529532592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.72065529532592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.72065529532592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.72065529532592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.72065529532592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.72065529532592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72065529532592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.72065529532592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.72065529532592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.72065529532592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.72065529532592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.72065529532592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.72065529532592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7550939699503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.7550939699503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.7550939699503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.7550939699503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.7550939699503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.7550939699503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.7550939699503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.7550939699503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.7550939699503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.7550939699503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7550939699503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.7550939699503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.7550939699503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.7550939699503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.7550939699503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.7550939699503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.7550939699503 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.50473470916705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.50473470916705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.50473470916705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.50473470916705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.75520818008375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.6299714446254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.56735307689622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.53604389303164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.50473470916705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.50473470916705 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.16874352165566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.16874352165566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.16874352165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.16874352165566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.85186916949009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.85186916949009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.85186916949009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.85186916949009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.85186916949009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.85186916949009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.85186916949009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85186916949009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.85186916949009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.85186916949009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.85186916949009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.85186916949009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.85186916949009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.85186916949009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.85186916949009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.85186916949009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.85186916949009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.01030634557287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.01030634557287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.01030634557287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.01030634557287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.01030634557287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.01030634557287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.01030634557287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01030634557287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.01030634557287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.01030634557287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01030634557287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.01030634557287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.01030634557287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.01030634557287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.01030634557287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.01030634557287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.01030634557287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.08952493361427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.08952493361427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.08952493361427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.08952493361427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.08952493361427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.08952493361427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.08952493361427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08952493361427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.08952493361427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.08952493361427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.08952493361427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.08952493361427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.08952493361427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.08952493361427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.08952493361427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.08952493361427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.08952493361427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.12913422763496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.12913422763496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.12913422763496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.12913422763496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.12913422763496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.12913422763496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.12913422763496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.12913422763496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.12913422763496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.12913422763496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12913422763496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.12913422763496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.12913422763496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.12913422763496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.12913422763496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.12913422763496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.12913422763496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16874352165566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.16874352165566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.16874352165566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16874352165566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.16874352165566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.16874352165566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16874352165566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16874352165566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16874352165566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.16874352165566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.16874352165566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.16874352165566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.16874352165566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.16874352165566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.16874352165566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.16874352165566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.16874352165566 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324553763416134 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324553763416134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324553763416134 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324553763416134 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.357009139757748 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.357009139757748 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.357009139757748 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.357009139757748 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.357009139757748 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.357009139757748 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.357009139757748 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.357009139757748 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.357009139757748 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.357009139757748 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.357009139757748 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.357009139757748 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.357009139757748 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.357009139757748 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.357009139757748 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.357009139757748 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.357009139757748 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340781451586941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.340781451586941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.340781451586941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.340781451586941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.340781451586941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.340781451586941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.340781451586941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340781451586941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.340781451586941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.340781451586941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.340781451586941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.340781451586941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.340781451586941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.340781451586941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.340781451586941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.340781451586941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.340781451586941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332667607501538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.332667607501538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.332667607501538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.332667607501538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.332667607501538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.332667607501538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.332667607501538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332667607501538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332667607501538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.332667607501538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.332667607501538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.332667607501538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.332667607501538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.332667607501538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.332667607501538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.332667607501538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.332667607501538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328610685458836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328610685458836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328610685458836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328610685458836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328610685458836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328610685458836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328610685458836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328610685458836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328610685458836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328610685458836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328610685458836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328610685458836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328610685458836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328610685458836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328610685458836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328610685458836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328610685458836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324553763416134 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.324553763416134 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.324553763416134 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324553763416134 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324553763416134 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324553763416134 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324553763416134 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324553763416134 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324553763416134 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324553763416134 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324553763416134 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324553763416134 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324553763416134 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324553763416134 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324553763416134 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324553763416134 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324553763416134 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0860258566921487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0860258566921487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0860258566921487 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0860258566921487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0946284423613636 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0946284423613636 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0946284423613636 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0946284423613636 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0946284423613636 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0946284423613636 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0946284423613636 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0946284423613636 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0946284423613636 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0946284423613636 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0946284423613636 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0946284423613636 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0946284423613636 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0946284423613636 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0946284423613636 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0946284423613636 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0946284423613636 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0903271495267561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0903271495267561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0903271495267561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0903271495267561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0903271495267561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0903271495267561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0903271495267561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0903271495267561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0903271495267561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0903271495267561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0903271495267561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0903271495267561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0903271495267561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0903271495267561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0903271495267561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0903271495267561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0903271495267561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0881765031094524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0881765031094524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0881765031094524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0881765031094524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0881765031094524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0881765031094524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0881765031094524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0881765031094524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0881765031094524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0881765031094524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0881765031094524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0881765031094524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0881765031094524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0881765031094524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0881765031094524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0881765031094524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0881765031094524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0871011799008005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0871011799008005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0871011799008005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0871011799008005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0871011799008005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0871011799008005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0871011799008005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0871011799008005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0871011799008005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0871011799008005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0871011799008005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0871011799008005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0871011799008005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0871011799008005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0871011799008005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0871011799008005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0871011799008005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0860258566921487 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0860258566921487 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0860258566921487 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0860258566921487 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0860258566921487 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0860258566921487 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0860258566921487 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0860258566921487 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0860258566921487 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0860258566921487 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0860258566921487 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0860258566921487 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0860258566921487 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0860258566921487 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0860258566921487 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0860258566921487 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0860258566921487 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.23979805341772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.23979805341772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.23979805341772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.23979805341772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.263777858759492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.263777858759492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.263777858759492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.263777858759492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.263777858759492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.263777858759492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.263777858759492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.263777858759492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.263777858759492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.263777858759492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.263777858759492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.263777858759492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.263777858759492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.263777858759492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.263777858759492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.263777858759492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.263777858759492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251787956088606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.251787956088606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.251787956088606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.251787956088606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251787956088606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251787956088606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251787956088606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251787956088606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251787956088606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251787956088606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251787956088606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251787956088606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251787956088606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251787956088606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251787956088606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251787956088606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251787956088606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.245793004753163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.245793004753163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.245793004753163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.245793004753163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.245793004753163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.245793004753163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.245793004753163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.245793004753163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.245793004753163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.245793004753163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.245793004753163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.245793004753163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.245793004753163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.245793004753163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.245793004753163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.245793004753163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.245793004753163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.242795529085442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.242795529085442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.242795529085442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.242795529085442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.242795529085442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.242795529085442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.242795529085442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.242795529085442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.242795529085442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.242795529085442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.242795529085442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.242795529085442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.242795529085442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.242795529085442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.242795529085442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.242795529085442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.242795529085442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23979805341772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.23979805341772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.23979805341772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.23979805341772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.23979805341772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.23979805341772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.23979805341772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23979805341772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.23979805341772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.23979805341772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.23979805341772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.23979805341772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.23979805341772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.23979805341772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.23979805341772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.23979805341772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.23979805341772 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.368996691386987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.368996691386987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.368996691386987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.368996691386987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.332097022248288 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.350546856817638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.359771774102312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.36438423274465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.368996691386987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.317377476567105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.317377476567105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.317377476567105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.317377476567105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.285639728910394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.301508602738749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.309443039652927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.313410258110016 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.317377476567105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.317377476567105 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.98832010045085 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.98832010045085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.98832010045085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.98832010045085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.38715211049594 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1877361054734 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.08802810296213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.03817410170649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.98832010045085 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.98832010045085 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.98832010045085 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.98832010045085 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.98832010045085 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.98832010045085 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.98832010045085 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.98832010045085 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.98832010045085 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.98832010045085 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.98832010045085 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.98832010045085 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.98832010045085 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.98832010045085 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.98832010045085 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.98832010045085 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.98832010045085 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17098572297915 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17098572297915 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17098572297915 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.05388715068124 -8.52335966369868e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1124364368302 -3.44132408945972e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14171107990468 -9.00306302340235e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17098572297915 -8.35945258636923e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17098572297915 -8.35945258636923e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.86178828461147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.86178828461147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.86178828461147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.86178828461147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.67560945615032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.67560945615032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.67560945615032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.67560945615032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.67560945615032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.67560945615032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.67560945615032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.67560945615032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.67560945615032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.67560945615032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.67560945615032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.67560945615032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.67560945615032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.67560945615032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.67560945615032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.67560945615032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.67560945615032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.7686988703809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.7686988703809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.7686988703809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.7686988703809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.7686988703809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.7686988703809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.7686988703809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.7686988703809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.7686988703809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.7686988703809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.7686988703809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.7686988703809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.7686988703809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.7686988703809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.7686988703809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.7686988703809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.7686988703809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81524357749618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81524357749618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81524357749618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81524357749618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81524357749618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81524357749618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81524357749618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81524357749618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81524357749618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81524357749618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81524357749618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81524357749618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81524357749618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81524357749618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81524357749618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81524357749618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81524357749618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.83851593105383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.83851593105383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.83851593105383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.83851593105383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.83851593105383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.83851593105383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.83851593105383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.83851593105383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.83851593105383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.83851593105383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.83851593105383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.83851593105383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.83851593105383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.83851593105383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.83851593105383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.83851593105383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.83851593105383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.86178828461147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.86178828461147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.86178828461147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.86178828461147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.86178828461147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.86178828461147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.86178828461147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.86178828461147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.86178828461147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.86178828461147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.86178828461147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.86178828461147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.86178828461147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.86178828461147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.86178828461147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.86178828461147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.86178828461147 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.39220303261471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.39220303261471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.39220303261471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.39220303261471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.15298272935324 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.15298272935324 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.15298272935324 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.15298272935324 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.15298272935324 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.15298272935324 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.15298272935324 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.15298272935324 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.15298272935324 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.15298272935324 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.15298272935324 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.15298272935324 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.15298272935324 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.15298272935324 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.15298272935324 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.15298272935324 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.15298272935324 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.27259288098398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.27259288098398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.27259288098398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.27259288098398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.27259288098398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.27259288098398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.27259288098398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.27259288098398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.27259288098398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.27259288098398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.27259288098398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.27259288098398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.27259288098398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.27259288098398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.27259288098398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.27259288098398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.27259288098398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.33239795679934 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.33239795679934 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.33239795679934 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.33239795679934 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.33239795679934 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.33239795679934 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.33239795679934 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.33239795679934 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.33239795679934 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.33239795679934 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.33239795679934 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.33239795679934 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.33239795679934 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.33239795679934 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.33239795679934 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.33239795679934 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.33239795679934 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36230049470703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.36230049470703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.36230049470703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.36230049470703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.36230049470703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.36230049470703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.36230049470703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.36230049470703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.36230049470703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36230049470703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.36230049470703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.36230049470703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.36230049470703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.36230049470703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.36230049470703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.36230049470703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.36230049470703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.39220303261471 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.39220303261471 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.39220303261471 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.39220303261471 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.39220303261471 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.39220303261471 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.39220303261471 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.39220303261471 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.39220303261471 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.39220303261471 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.39220303261471 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.39220303261471 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.39220303261471 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.39220303261471 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.39220303261471 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.39220303261471 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.39220303261471 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.181861252472973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.181861252472973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.181861252472973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.181861252472973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163675127225676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.172768189849325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.177314721161149 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.179587986817061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181861252472973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.181861252472973 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.170609944932139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.170609944932139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.170609944932139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.170609944932139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.187670939425353 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.187670939425353 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.187670939425353 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.187670939425353 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.187670939425353 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.187670939425353 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.187670939425353 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.187670939425353 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.187670939425353 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.187670939425353 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.187670939425353 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.187670939425353 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.187670939425353 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.187670939425353 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.187670939425353 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.187670939425353 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.187670939425353 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.187670939425353 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179140442178746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179140442178746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179140442178746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179140442178746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179140442178746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179140442178746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179140442178746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179140442178746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179140442178746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179140442178746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179140442178746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179140442178746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179140442178746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179140442178746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179140442178746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179140442178746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.179140442178746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.179140442178746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.174875193555443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.174875193555443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.174875193555443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.174875193555443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.174875193555443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.174875193555443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.174875193555443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.174875193555443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.174875193555443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.174875193555443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.174875193555443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.174875193555443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.174875193555443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.174875193555443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.174875193555443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.174875193555443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.174875193555443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.174875193555443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.172742569243791 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.172742569243791 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.172742569243791 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.172742569243791 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.172742569243791 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.172742569243791 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.172742569243791 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.172742569243791 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.172742569243791 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.172742569243791 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.172742569243791 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.172742569243791 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.172742569243791 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.172742569243791 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.172742569243791 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.172742569243791 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.172742569243791 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.172742569243791 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170609944932139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170609944932139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170609944932139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170609944932139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170609944932139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170609944932139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170609944932139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170609944932139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170609944932139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170609944932139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170609944932139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170609944932139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170609944932139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170609944932139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170609944932139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.170609944932139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0701358750186163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0701358750186163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0701358750186163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0701358750186163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0771494625204779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0771494625204779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0771494625204779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0771494625204779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0771494625204779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0771494625204779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0771494625204779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0771494625204779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0771494625204779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0771494625204779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0771494625204779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0771494625204779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0771494625204779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0771494625204779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0771494625204779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0771494625204779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0771494625204779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0771494625204779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0736426687695471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0736426687695471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0736426687695471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0736426687695471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0736426687695471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0736426687695471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0736426687695471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0736426687695471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0736426687695471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0736426687695471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0736426687695471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0736426687695471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0736426687695471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0736426687695471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0736426687695471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0736426687695471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0736426687695471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0736426687695471 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718892718940817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718892718940817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0718892718940817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0718892718940817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0718892718940817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0718892718940817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0718892718940817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0718892718940817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718892718940817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0718892718940817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0718892718940817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0718892718940817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0718892718940817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0718892718940817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0718892718940817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0718892718940817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0718892718940817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0718892718940817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.071012573456349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.071012573456349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.071012573456349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.071012573456349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.071012573456349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.071012573456349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.071012573456349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.071012573456349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.071012573456349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.071012573456349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.071012573456349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.071012573456349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.071012573456349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.071012573456349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.071012573456349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.071012573456349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.071012573456349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.071012573456349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0701358750186163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0701358750186163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0701358750186163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0701358750186163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0701358750186163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0701358750186163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0701358750186163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0701358750186163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0701358750186163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0701358750186163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0701358750186163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0701358750186163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0701358750186163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0701358750186163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0701358750186163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0701358750186163 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.179447443598139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.179447443598139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.179447443598139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.179447443598139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197392187957953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.197392187957953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.197392187957953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.197392187957953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.197392187957953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.197392187957953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.197392187957953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197392187957953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.197392187957953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.197392187957953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.197392187957953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.197392187957953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.197392187957953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.197392187957953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.197392187957953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.197392187957953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.197392187957953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188419815778046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.188419815778046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.188419815778046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.188419815778046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.188419815778046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.188419815778046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.188419815778046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188419815778046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.188419815778046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.188419815778046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.188419815778046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.188419815778046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.188419815778046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.188419815778046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.188419815778046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.188419815778046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.188419815778046 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.183933629688092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.183933629688092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.183933629688092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.183933629688092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.183933629688092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.183933629688092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.183933629688092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.183933629688092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.183933629688092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.183933629688092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.183933629688092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.183933629688092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.183933629688092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.183933629688092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.183933629688092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.183933629688092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.183933629688092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.181690536643116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.181690536643116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.181690536643116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.181690536643116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.181690536643116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.181690536643116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.181690536643116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.181690536643116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.181690536643116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.181690536643116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.181690536643116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.181690536643116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.181690536643116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.181690536643116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.181690536643116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.181690536643116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.181690536643116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179447443598139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179447443598139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179447443598139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179447443598139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179447443598139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179447443598139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179447443598139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179447443598139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179447443598139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179447443598139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179447443598139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179447443598139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179447443598139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179447443598139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179447443598139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.179447443598139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.179447443598139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0800388406567389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0800388406567389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0800388406567389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0800388406567389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.072034956591065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.072034956591065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.072034956591065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.072034956591065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.072034956591065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.072034956591065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.072034956591065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.072034956591065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.072034956591065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.072034956591065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.072034956591065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.072034956591065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.072034956591065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.072034956591065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.072034956591065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.072034956591065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.072034956591065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.076036898623902 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.076036898623902 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.076036898623902 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.076036898623902 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.076036898623902 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.076036898623902 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.076036898623902 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.076036898623902 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.076036898623902 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.076036898623902 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.076036898623902 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.076036898623902 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.076036898623902 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.076036898623902 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.076036898623902 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.076036898623902 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.076036898623902 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0780378696403205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0780378696403205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0780378696403205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0780378696403205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0780378696403205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0780378696403205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0780378696403205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0780378696403205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0780378696403205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0780378696403205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0780378696403205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0780378696403205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0780378696403205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0780378696403205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0780378696403205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0780378696403205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0780378696403205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0790383551485297 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0790383551485297 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0790383551485297 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0790383551485297 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0790383551485297 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0790383551485297 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0790383551485297 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0790383551485297 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0790383551485297 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0790383551485297 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0790383551485297 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0790383551485297 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0790383551485297 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0790383551485297 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0790383551485297 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0790383551485297 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0790383551485297 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0800388406567389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0800388406567389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0800388406567389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0800388406567389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0800388406567389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0800388406567389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0800388406567389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0800388406567389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0800388406567389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0800388406567389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0800388406567389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0800388406567389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0800388406567389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0800388406567389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0800388406567389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0800388406567389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0800388406567389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.343894059988797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.343894059988797 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.343894059988797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.343894059988797 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309504653989918 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.309504653989918 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.309504653989918 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.309504653989918 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.309504653989918 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.309504653989918 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.309504653989918 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309504653989918 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.309504653989918 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.309504653989918 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.309504653989918 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.309504653989918 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.309504653989918 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.309504653989918 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.309504653989918 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.309504653989918 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.309504653989918 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.326699356989357 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.326699356989357 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.326699356989357 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.326699356989357 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.326699356989357 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.326699356989357 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.326699356989357 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.326699356989357 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.326699356989357 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.326699356989357 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.326699356989357 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.326699356989357 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.326699356989357 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.326699356989357 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.326699356989357 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.326699356989357 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.326699356989357 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.335296708489077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.335296708489077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.335296708489077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.335296708489077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.335296708489077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.335296708489077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.335296708489077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.335296708489077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.335296708489077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.335296708489077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.335296708489077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.335296708489077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.335296708489077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.335296708489077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.335296708489077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.335296708489077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.335296708489077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339595384238937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.339595384238937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.339595384238937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.339595384238937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.339595384238937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.339595384238937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.339595384238937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339595384238937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.339595384238937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.339595384238937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.339595384238937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.339595384238937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.339595384238937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.339595384238937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.339595384238937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.339595384238937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.339595384238937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343894059988797 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.343894059988797 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.343894059988797 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.343894059988797 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.343894059988797 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.343894059988797 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.343894059988797 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343894059988797 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.343894059988797 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.343894059988797 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.343894059988797 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.343894059988797 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.343894059988797 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.343894059988797 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.343894059988797 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.343894059988797 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.343894059988797 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.04607037375379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.04607037375379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.04607037375379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.04607037375379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15067741112916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.15067741112916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.15067741112916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.15067741112916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15067741112916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15067741112916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15067741112916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15067741112916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15067741112916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15067741112916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.15067741112916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.15067741112916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15067741112916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15067741112916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15067741112916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15067741112916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.15067741112916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09837389244148 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.09837389244148 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.09837389244148 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.09837389244148 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09837389244148 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09837389244148 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09837389244148 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09837389244148 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09837389244148 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09837389244148 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09837389244148 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09837389244148 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09837389244148 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09837389244148 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09837389244148 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09837389244148 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09837389244148 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07222213309763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.07222213309763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.07222213309763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.07222213309763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.07222213309763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.07222213309763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07222213309763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.07222213309763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.07222213309763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.07222213309763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.07222213309763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.07222213309763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.07222213309763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.07222213309763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.07222213309763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.07222213309763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.07222213309763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.05914625342571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.05914625342571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.05914625342571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.05914625342571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.05914625342571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.05914625342571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.05914625342571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.05914625342571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.05914625342571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.05914625342571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.05914625342571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.05914625342571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.05914625342571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.05914625342571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.05914625342571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.05914625342571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.05914625342571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04607037375379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.04607037375379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.04607037375379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04607037375379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04607037375379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04607037375379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04607037375379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04607037375379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04607037375379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04607037375379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04607037375379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.04607037375379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.04607037375379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.04607037375379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.04607037375379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.04607037375379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.04607037375379 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.467478455159745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.467478455159745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.467478455159745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.467478455159745 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.51422630067572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.51422630067572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.51422630067572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.51422630067572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.51422630067572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.51422630067572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.51422630067572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.51422630067572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.51422630067572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.51422630067572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.51422630067572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.51422630067572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.51422630067572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.51422630067572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.51422630067572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.51422630067572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.51422630067572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490852377917733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.490852377917733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.490852377917733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.490852377917733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.490852377917733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.490852377917733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490852377917733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490852377917733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490852377917733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.490852377917733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.490852377917733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.490852377917733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.490852377917733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.490852377917733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.490852377917733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.490852377917733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.490852377917733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.479165416538739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.479165416538739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.479165416538739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.479165416538739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.479165416538739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.479165416538739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.479165416538739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.479165416538739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.479165416538739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.479165416538739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.479165416538739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.479165416538739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.479165416538739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.479165416538739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.479165416538739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.479165416538739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.479165416538739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.473321935849242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.473321935849242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.473321935849242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.473321935849242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.473321935849242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.473321935849242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.473321935849242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.473321935849242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.473321935849242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.473321935849242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.473321935849242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.473321935849242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.473321935849242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.473321935849242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.473321935849242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.473321935849242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.473321935849242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467478455159745 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467478455159745 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467478455159745 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467478455159745 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467478455159745 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467478455159745 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467478455159745 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467478455159745 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467478455159745 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467478455159745 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467478455159745 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467478455159745 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467478455159745 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467478455159745 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.467478455159745 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.467478455159745 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.467478455159745 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.19875803591291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.19875803591291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.19875803591291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.19875803591291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.07888223232162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.07888223232162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.07888223232162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.07888223232162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.07888223232162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.07888223232162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.07888223232162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.07888223232162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.07888223232162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.07888223232162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.07888223232162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.07888223232162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.07888223232162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.07888223232162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.07888223232162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.07888223232162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.07888223232162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13882013411727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13882013411727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13882013411727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13882013411727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13882013411727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13882013411727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13882013411727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13882013411727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13882013411727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13882013411727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13882013411727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13882013411727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13882013411727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13882013411727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.13882013411727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.13882013411727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.13882013411727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16878908501509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.16878908501509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.16878908501509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16878908501509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16878908501509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16878908501509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16878908501509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16878908501509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16878908501509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16878908501509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16878908501509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16878908501509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16878908501509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16878908501509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16878908501509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16878908501509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16878908501509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.183773560464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.183773560464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.183773560464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.183773560464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.183773560464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.183773560464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.183773560464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.183773560464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.183773560464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.183773560464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.183773560464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.183773560464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.183773560464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.183773560464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.183773560464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.183773560464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.183773560464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19875803591291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.19875803591291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.19875803591291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.19875803591291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.19875803591291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.19875803591291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.19875803591291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.19875803591291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19875803591291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.19875803591291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.19875803591291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.19875803591291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.19875803591291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.19875803591291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.19875803591291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.19875803591291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.19875803591291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.657975294769174 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.657975294769174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.657975294769174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.657975294769174 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.592177765292257 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.592177765292257 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.592177765292257 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.592177765292257 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.592177765292257 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.592177765292257 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.592177765292257 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.592177765292257 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.592177765292257 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.592177765292257 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.592177765292257 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.592177765292257 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.592177765292257 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.592177765292257 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.592177765292257 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.592177765292257 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.592177765292257 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.625076530030715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.625076530030715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.625076530030715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.625076530030715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.625076530030715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.625076530030715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.625076530030715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.625076530030715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.625076530030715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.625076530030715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.625076530030715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.625076530030715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.625076530030715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.625076530030715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.625076530030715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.625076530030715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.625076530030715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.641525912399945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.641525912399945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.641525912399945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.641525912399945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.641525912399945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.641525912399945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.641525912399945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.641525912399945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.641525912399945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.641525912399945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.641525912399945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.641525912399945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.641525912399945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.641525912399945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.641525912399945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.641525912399945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.641525912399945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.649750603584559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.649750603584559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.649750603584559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.649750603584559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.649750603584559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.649750603584559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.649750603584559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.649750603584559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.649750603584559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.649750603584559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.649750603584559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.649750603584559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.649750603584559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.649750603584559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.649750603584559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.649750603584559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.649750603584559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.657975294769174 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.657975294769174 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.657975294769174 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.657975294769174 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.657975294769174 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.657975294769174 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.657975294769174 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.657975294769174 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.657975294769174 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.657975294769174 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.657975294769174 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.657975294769174 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.657975294769174 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.657975294769174 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.657975294769174 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.657975294769174 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.657975294769174 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.849548368719425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.849548368719425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.849548368719425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.849548368719425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.764593531847483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.764593531847483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.764593531847483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.764593531847483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.764593531847483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.764593531847483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.764593531847483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.764593531847483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.764593531847483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.764593531847483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.764593531847483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.764593531847483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.764593531847483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.764593531847483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.764593531847483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.764593531847483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.764593531847483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.807070950283454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.807070950283454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.807070950283454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.807070950283454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.807070950283454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.807070950283454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.807070950283454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.807070950283454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.807070950283454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.807070950283454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.807070950283454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.807070950283454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.807070950283454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.807070950283454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.807070950283454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.807070950283454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.807070950283454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.828309659501439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.828309659501439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.828309659501439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.828309659501439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.828309659501439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.828309659501439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.828309659501439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.828309659501439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.828309659501439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.828309659501439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.828309659501439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.828309659501439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.828309659501439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.828309659501439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.828309659501439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.828309659501439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.828309659501439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.838929014110432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.838929014110432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.838929014110432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.838929014110432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.838929014110432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.838929014110432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.838929014110432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.838929014110432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.838929014110432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.838929014110432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.838929014110432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.838929014110432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.838929014110432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.838929014110432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.838929014110432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.838929014110432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.838929014110432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849548368719425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.849548368719425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.849548368719425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.849548368719425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.849548368719425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.849548368719425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.849548368719425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.849548368719425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849548368719425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.849548368719425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.849548368719425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.849548368719425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.849548368719425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.849548368719425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.849548368719425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.849548368719425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.849548368719425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.30743961139271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.30743961139271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.30743961139271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.30743961139271 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17669565025344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.17669565025344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17669565025344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17669565025344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17669565025344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17669565025344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17669565025344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17669565025344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17669565025344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17669565025344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17669565025344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17669565025344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17669565025344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17669565025344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17669565025344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17669565025344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17669565025344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24206763082307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.24206763082307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.24206763082307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.24206763082307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.24206763082307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.24206763082307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.24206763082307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.24206763082307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24206763082307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.24206763082307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.24206763082307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.24206763082307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.24206763082307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.24206763082307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.24206763082307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.24206763082307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.24206763082307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27475362110789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27475362110789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27475362110789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27475362110789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27475362110789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27475362110789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27475362110789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27475362110789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27475362110789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27475362110789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27475362110789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27475362110789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27475362110789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27475362110789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27475362110789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27475362110789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27475362110789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2910966162503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2910966162503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2910966162503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2910966162503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2910966162503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2910966162503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2910966162503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2910966162503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2910966162503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2910966162503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.2910966162503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.2910966162503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.2910966162503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.2910966162503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.2910966162503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.2910966162503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.2910966162503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30743961139271 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.30743961139271 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.30743961139271 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.30743961139271 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.30743961139271 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.30743961139271 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.30743961139271 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.30743961139271 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30743961139271 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.30743961139271 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.30743961139271 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.30743961139271 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.30743961139271 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.30743961139271 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.30743961139271 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.30743961139271 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.30743961139271 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.06317812881365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.06317812881365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.06317812881365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.06317812881365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.36949594169501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.36949594169501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.36949594169501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.36949594169501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36949594169501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.36949594169501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.36949594169501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.36949594169501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.36949594169501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.36949594169501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.36949594169501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.36949594169501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.36949594169501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.36949594169501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.36949594169501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.36949594169501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.36949594169501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.21633703525433 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.21633703525433 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.21633703525433 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.21633703525433 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21633703525433 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.21633703525433 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21633703525433 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21633703525433 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21633703525433 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.21633703525433 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.21633703525433 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.21633703525433 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.21633703525433 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.21633703525433 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.21633703525433 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.21633703525433 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.21633703525433 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.13975758203399 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.13975758203399 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.13975758203399 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.13975758203399 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.13975758203399 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.13975758203399 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.13975758203399 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.13975758203399 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.13975758203399 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.13975758203399 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.13975758203399 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.13975758203399 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.13975758203399 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.13975758203399 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.13975758203399 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.13975758203399 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.13975758203399 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.10146785542382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.10146785542382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.10146785542382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.10146785542382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.10146785542382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.10146785542382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.10146785542382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.10146785542382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.10146785542382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.10146785542382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.10146785542382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.10146785542382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.10146785542382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.10146785542382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.10146785542382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.10146785542382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.10146785542382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06317812881365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06317812881365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06317812881365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06317812881365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06317812881365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06317812881365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06317812881365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06317812881365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06317812881365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06317812881365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06317812881365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.06317812881365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.06317812881365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.06317812881365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.06317812881365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.06317812881365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.06317812881365 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.54201518642809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.54201518642809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.54201518642809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.54201518642809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7962167050709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7962167050709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7962167050709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7962167050709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7962167050709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7962167050709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7962167050709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7962167050709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7962167050709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7962167050709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7962167050709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7962167050709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7962167050709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7962167050709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.7962167050709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.7962167050709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.7962167050709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.66911594574949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.66911594574949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.66911594574949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.66911594574949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.66911594574949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.66911594574949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.66911594574949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.66911594574949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.66911594574949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.66911594574949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.66911594574949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.66911594574949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.66911594574949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.66911594574949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.66911594574949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.66911594574949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.66911594574949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.60556556608879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.60556556608879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.60556556608879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.60556556608879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.60556556608879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.60556556608879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.60556556608879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.60556556608879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.60556556608879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.60556556608879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.60556556608879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.60556556608879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.60556556608879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.60556556608879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.60556556608879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.60556556608879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.60556556608879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.57379037625844 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.57379037625844 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.57379037625844 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.57379037625844 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.57379037625844 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.57379037625844 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.57379037625844 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.57379037625844 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.57379037625844 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.57379037625844 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.57379037625844 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.57379037625844 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.57379037625844 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.57379037625844 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.57379037625844 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.57379037625844 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.57379037625844 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54201518642809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.54201518642809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.54201518642809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.54201518642809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54201518642809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.54201518642809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.54201518642809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54201518642809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54201518642809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.54201518642809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.54201518642809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.54201518642809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.54201518642809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.54201518642809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.54201518642809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.54201518642809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.54201518642809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.36502079904005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.36502079904005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.36502079904005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.36502079904005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.70152287894405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.70152287894405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.70152287894405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.70152287894405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.70152287894405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.70152287894405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.70152287894405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.70152287894405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.70152287894405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.70152287894405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.70152287894405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.70152287894405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.70152287894405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.70152287894405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.70152287894405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.70152287894405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.70152287894405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.53327183899205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.53327183899205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.53327183899205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.53327183899205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.53327183899205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.53327183899205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.53327183899205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.53327183899205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.53327183899205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.53327183899205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.53327183899205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.53327183899205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.53327183899205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.53327183899205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.53327183899205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.53327183899205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.53327183899205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44914631901605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.44914631901605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.44914631901605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.44914631901605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44914631901605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.44914631901605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.44914631901605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.44914631901605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.44914631901605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.44914631901605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.44914631901605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.44914631901605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.44914631901605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.44914631901605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.44914631901605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.44914631901605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.44914631901605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.40708355902805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.40708355902805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.40708355902805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.40708355902805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.40708355902805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.40708355902805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.40708355902805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.40708355902805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.40708355902805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.40708355902805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.40708355902805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.40708355902805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.40708355902805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.40708355902805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.40708355902805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.40708355902805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.40708355902805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36502079904005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.36502079904005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.36502079904005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.36502079904005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36502079904005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.36502079904005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.36502079904005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.36502079904005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.36502079904005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.36502079904005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.36502079904005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.36502079904005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.36502079904005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.36502079904005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.36502079904005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.36502079904005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.36502079904005 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.270625367624715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.270625367624715 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.270625367624715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.270625367624715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.297687904387187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.284156636005951 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.277391001815333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.274008184720024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.270625367624715 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.270625367624715 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.017114570732953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.017114570732953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.017114570732953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.017114570732953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0188260278062483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0188260278062483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0188260278062483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0188260278062483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0188260278062483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0188260278062483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0188260278062483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0188260278062483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0188260278062483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0188260278062483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0188260278062483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0188260278062483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0188260278062483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0188260278062483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0188260278062483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0188260278062483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0188260278062483 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0179702992696006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0179702992696006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0179702992696006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0179702992696006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0179702992696006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0179702992696006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0179702992696006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0179702992696006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0179702992696006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0179702992696006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0179702992696006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0179702992696006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0179702992696006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0179702992696006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0179702992696006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0179702992696006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0179702992696006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0175424350012768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0175424350012768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0175424350012768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0175424350012768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0175424350012768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0175424350012768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0175424350012768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0175424350012768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0175424350012768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0175424350012768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0175424350012768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0175424350012768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0175424350012768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0175424350012768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0175424350012768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0175424350012768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0175424350012768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173285028671149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0173285028671149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0173285028671149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0173285028671149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0173285028671149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173285028671149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173285028671149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173285028671149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173285028671149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173285028671149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173285028671149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173285028671149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173285028671149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173285028671149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173285028671149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173285028671149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173285028671149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017114570732953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.017114570732953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.017114570732953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.017114570732953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.017114570732953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.017114570732953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.017114570732953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.017114570732953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017114570732953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.017114570732953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.017114570732953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.017114570732953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.017114570732953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.017114570732953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.017114570732953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.017114570732953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.017114570732953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170406203264344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170406203264344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170406203264344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170406203264344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.187446823590778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.187446823590778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.187446823590778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.187446823590778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.187446823590778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.187446823590778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.187446823590778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.187446823590778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.187446823590778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.187446823590778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.187446823590778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.187446823590778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.187446823590778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.187446823590778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.187446823590778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.187446823590778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.187446823590778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.178926513427561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.178926513427561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.178926513427561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.178926513427561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.178926513427561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.178926513427561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.178926513427561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.178926513427561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.178926513427561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.178926513427561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.178926513427561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.178926513427561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.178926513427561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.178926513427561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.178926513427561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.178926513427561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.178926513427561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.174666358345952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.174666358345952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.174666358345952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.174666358345952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.174666358345952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.174666358345952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.174666358345952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.174666358345952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.174666358345952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.174666358345952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.174666358345952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.174666358345952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.174666358345952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.174666358345952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.174666358345952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.174666358345952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.174666358345952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.172536280805148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.172536280805148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.172536280805148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.172536280805148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.172536280805148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.172536280805148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.172536280805148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.172536280805148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.172536280805148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.172536280805148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.172536280805148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.172536280805148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.172536280805148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.172536280805148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.172536280805148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.172536280805148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.172536280805148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170406203264344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.170406203264344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170406203264344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170406203264344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170406203264344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170406203264344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170406203264344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170406203264344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170406203264344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170406203264344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170406203264344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170406203264344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170406203264344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170406203264344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170406203264344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170406203264344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170406203264344 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.992825540917612 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.992825540917612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.992825540917612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.992825540917612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893542986825851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.893542986825851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.893542986825851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.893542986825851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.893542986825851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.893542986825851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.893542986825851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.893542986825851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.893542986825851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893542986825851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.893542986825851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.893542986825851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.893542986825851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.893542986825851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.893542986825851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.893542986825851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.893542986825851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.943184263871731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.943184263871731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.943184263871731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.943184263871731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.943184263871731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.943184263871731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.943184263871731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.943184263871731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.943184263871731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.943184263871731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.943184263871731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.943184263871731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.943184263871731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.943184263871731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.943184263871731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.943184263871731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.943184263871731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.968004902394672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.968004902394672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.968004902394672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.968004902394672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.968004902394672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.968004902394672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.968004902394672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.968004902394672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.968004902394672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.968004902394672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.968004902394672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.968004902394672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.968004902394672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.968004902394672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.968004902394672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.968004902394672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.968004902394672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.980415221656142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.980415221656142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.980415221656142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.980415221656142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.980415221656142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.980415221656142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.980415221656142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.980415221656142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.980415221656142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.980415221656142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.980415221656142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.980415221656142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.980415221656142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.980415221656142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.980415221656142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.980415221656142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.980415221656142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992825540917612 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.992825540917612 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.992825540917612 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.992825540917612 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.992825540917612 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.992825540917612 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.992825540917612 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.992825540917612 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.992825540917612 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992825540917612 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.992825540917612 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.992825540917612 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.992825540917612 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.992825540917612 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.992825540917612 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.992825540917612 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.992825540917612 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.10256446888127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.10256446888127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.10256446888127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.10256446888127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992308021993141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.992308021993141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.992308021993141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.992308021993141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.992308021993141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.992308021993141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.992308021993141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.992308021993141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.992308021993141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.992308021993141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.992308021993141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.992308021993141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.992308021993141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.992308021993141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.992308021993141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.992308021993141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.992308021993141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0474362454372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.0474362454372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.0474362454372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.0474362454372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0474362454372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0474362454372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0474362454372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0474362454372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0474362454372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0474362454372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0474362454372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0474362454372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0474362454372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0474362454372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0474362454372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0474362454372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0474362454372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.07500035715924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.07500035715924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.07500035715924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.07500035715924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.07500035715924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.07500035715924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.07500035715924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.07500035715924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.07500035715924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.07500035715924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.07500035715924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.07500035715924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.07500035715924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.07500035715924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.07500035715924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.07500035715924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.07500035715924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08878241302025 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.08878241302025 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.08878241302025 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08878241302025 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08878241302025 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08878241302025 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08878241302025 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08878241302025 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08878241302025 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08878241302025 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08878241302025 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08878241302025 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08878241302025 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08878241302025 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08878241302025 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08878241302025 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.08878241302025 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10256446888127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.10256446888127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10256446888127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10256446888127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10256446888127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10256446888127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10256446888127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10256446888127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10256446888127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10256446888127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10256446888127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10256446888127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10256446888127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.10256446888127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.10256446888127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.10256446888127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.10256446888127 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.492131295291485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.492131295291485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.492131295291485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.492131295291485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.541344424820633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.541344424820633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.541344424820633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.541344424820633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.541344424820633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.541344424820633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.541344424820633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.541344424820633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.541344424820633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.541344424820633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.541344424820633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.541344424820633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.541344424820633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.541344424820633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.541344424820633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.541344424820633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.541344424820633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.516737860056059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.516737860056059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.516737860056059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.516737860056059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.516737860056059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.516737860056059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.516737860056059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.516737860056059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.516737860056059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.516737860056059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.516737860056059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.516737860056059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.516737860056059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.516737860056059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.516737860056059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.516737860056059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.516737860056059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.504434577673772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.504434577673772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.504434577673772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.504434577673772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.504434577673772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.504434577673772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.504434577673772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.504434577673772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.504434577673772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.504434577673772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.504434577673772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.504434577673772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.504434577673772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.504434577673772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.504434577673772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.504434577673772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.504434577673772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.498282936482628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.498282936482628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.498282936482628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.498282936482628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.498282936482628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.498282936482628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.498282936482628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.498282936482628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.498282936482628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.498282936482628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.498282936482628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.498282936482628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.498282936482628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.498282936482628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.498282936482628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.498282936482628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.498282936482628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492131295291485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.492131295291485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.492131295291485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.492131295291485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.492131295291485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.492131295291485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.492131295291485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.492131295291485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.492131295291485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.492131295291485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.492131295291485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.492131295291485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.492131295291485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.492131295291485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.492131295291485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.492131295291485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.492131295291485 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.82900556100028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.82900556100028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.82900556100028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.82900556100028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.11190611710031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.97045583905029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.89973070002529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.86436813051278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.82900556100028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.82900556100028 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414894371439255 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414894371439255 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414894371439255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414894371439255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373404934295329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.373404934295329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.373404934295329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373404934295329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373404934295329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373404934295329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373404934295329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373404934295329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373404934295329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373404934295329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373404934295329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373404934295329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373404934295329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373404934295329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373404934295329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.373404934295329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.373404934295329 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394149652867292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.394149652867292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.394149652867292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.394149652867292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.394149652867292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.394149652867292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.394149652867292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.394149652867292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394149652867292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.394149652867292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.394149652867292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.394149652867292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.394149652867292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.394149652867292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.394149652867292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.394149652867292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.394149652867292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404522012153274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.404522012153274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.404522012153274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.404522012153274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.404522012153274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.404522012153274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.404522012153274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.404522012153274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404522012153274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.404522012153274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.404522012153274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.404522012153274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.404522012153274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.404522012153274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.404522012153274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.404522012153274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.404522012153274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409708191796264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.409708191796264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.409708191796264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.409708191796264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.409708191796264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.409708191796264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.409708191796264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409708191796264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409708191796264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.409708191796264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.409708191796264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.409708191796264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.409708191796264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.409708191796264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.409708191796264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.409708191796264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.409708191796264 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414894371439255 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.414894371439255 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.414894371439255 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.414894371439255 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.414894371439255 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414894371439255 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414894371439255 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414894371439255 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414894371439255 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414894371439255 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414894371439255 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414894371439255 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414894371439255 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414894371439255 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414894371439255 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414894371439255 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414894371439255 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.220009945658067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.220009945658067 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.220009945658067 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.220009945658067 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19800895109226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.19800895109226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.19800895109226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.19800895109226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.19800895109226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.19800895109226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.19800895109226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.19800895109226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19800895109226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.19800895109226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.19800895109226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.19800895109226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.19800895109226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.19800895109226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.19800895109226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.19800895109226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.19800895109226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209009448375163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.209009448375163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.209009448375163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.209009448375163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.209009448375163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.209009448375163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.209009448375163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.209009448375163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209009448375163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.209009448375163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.209009448375163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.209009448375163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.209009448375163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.209009448375163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.209009448375163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.209009448375163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.209009448375163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.214509697016615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.214509697016615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.214509697016615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.214509697016615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.214509697016615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.214509697016615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.214509697016615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.214509697016615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.214509697016615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.214509697016615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.214509697016615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.214509697016615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.214509697016615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.214509697016615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.214509697016615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.214509697016615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.214509697016615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217259821337341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.217259821337341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.217259821337341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.217259821337341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.217259821337341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.217259821337341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.217259821337341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.217259821337341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217259821337341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.217259821337341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.217259821337341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.217259821337341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.217259821337341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.217259821337341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.217259821337341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.217259821337341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.217259821337341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220009945658067 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.220009945658067 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.220009945658067 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.220009945658067 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.220009945658067 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.220009945658067 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.220009945658067 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.220009945658067 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220009945658067 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.220009945658067 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.220009945658067 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.220009945658067 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.220009945658067 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.220009945658067 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.220009945658067 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.220009945658067 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.220009945658067 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390357589916768 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390357589916768 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390357589916768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390357589916768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.429393348908445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.429393348908445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.429393348908445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.429393348908445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.429393348908445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.429393348908445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.429393348908445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.429393348908445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.429393348908445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.429393348908445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.429393348908445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.429393348908445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.429393348908445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.429393348908445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.429393348908445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.429393348908445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.429393348908445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409875469412607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.409875469412607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.409875469412607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.409875469412607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.409875469412607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.409875469412607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.409875469412607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.409875469412607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409875469412607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.409875469412607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.409875469412607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.409875469412607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.409875469412607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.409875469412607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.409875469412607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.409875469412607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.409875469412607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.400116529664688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.400116529664688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.400116529664688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.400116529664688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.400116529664688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.400116529664688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.400116529664688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.400116529664688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.400116529664688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.400116529664688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.400116529664688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.400116529664688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.400116529664688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.400116529664688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.400116529664688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.400116529664688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.400116529664688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.395237059790728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.395237059790728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.395237059790728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.395237059790728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.395237059790728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.395237059790728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.395237059790728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.395237059790728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.395237059790728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.395237059790728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.395237059790728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.395237059790728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.395237059790728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.395237059790728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.395237059790728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.395237059790728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.395237059790728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390357589916768 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390357589916768 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390357589916768 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390357589916768 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390357589916768 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390357589916768 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390357589916768 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390357589916768 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390357589916768 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390357589916768 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390357589916768 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390357589916768 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390357589916768 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390357589916768 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390357589916768 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390357589916768 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390357589916768 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.00666712724915007 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.00666712724915007 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.00666712724915007 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.00666712724915007 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.00600041452423506 -9.04877434814128e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.00633377088669257 -3.99592847859357e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.00650044906792132 -1.46950554381972e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.00658378815853569 -2.06294076432794e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.00666712724915007 -8.94318830078496e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.333747010363276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.333747010363276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.333747010363276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.333747010363276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.367121711399604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.367121711399604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.367121711399604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.367121711399604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.367121711399604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.367121711399604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.367121711399604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.367121711399604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.367121711399604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.367121711399604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.367121711399604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.367121711399604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.367121711399604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.367121711399604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.367121711399604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.367121711399604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.367121711399604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35043436088144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.35043436088144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.35043436088144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.35043436088144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.35043436088144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35043436088144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35043436088144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35043436088144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35043436088144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35043436088144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35043436088144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35043436088144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35043436088144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35043436088144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35043436088144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35043436088144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35043436088144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.342090685622358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.342090685622358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.342090685622358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.342090685622358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.342090685622358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.342090685622358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.342090685622358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.342090685622358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.342090685622358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.342090685622358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.342090685622358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.342090685622358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.342090685622358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.342090685622358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.342090685622358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.342090685622358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.342090685622358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337918847992817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.337918847992817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.337918847992817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.337918847992817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.337918847992817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.337918847992817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.337918847992817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.337918847992817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337918847992817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337918847992817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.337918847992817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.337918847992817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.337918847992817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.337918847992817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.337918847992817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.337918847992817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.337918847992817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333747010363276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.333747010363276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.333747010363276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.333747010363276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.333747010363276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.333747010363276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333747010363276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333747010363276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333747010363276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333747010363276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333747010363276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333747010363276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.333747010363276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.333747010363276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.333747010363276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.333747010363276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.333747010363276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.494530173532762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.494530173532762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.494530173532762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.494530173532762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.543983190886038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.543983190886038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.543983190886038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.543983190886038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.543983190886038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.543983190886038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.543983190886038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.543983190886038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.543983190886038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.543983190886038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.543983190886038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.543983190886038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.543983190886038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.543983190886038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.543983190886038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.543983190886038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.543983190886038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.5192566822094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.5192566822094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.5192566822094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.5192566822094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.5192566822094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.5192566822094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.5192566822094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.5192566822094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.5192566822094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.5192566822094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.5192566822094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.5192566822094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.5192566822094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.5192566822094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.5192566822094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.5192566822094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.5192566822094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.506893427871081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.506893427871081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.506893427871081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.506893427871081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.506893427871081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.506893427871081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.506893427871081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.506893427871081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.506893427871081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.506893427871081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.506893427871081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.506893427871081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.506893427871081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.506893427871081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.506893427871081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.506893427871081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.506893427871081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.500711800701922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.500711800701922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.500711800701922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.500711800701922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.500711800701922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.500711800701922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.500711800701922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.500711800701922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.500711800701922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.500711800701922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.500711800701922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.500711800701922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.500711800701922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.500711800701922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.500711800701922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.500711800701922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.500711800701922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494530173532762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.494530173532762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.494530173532762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.494530173532762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.494530173532762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.494530173532762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.494530173532762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.494530173532762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.494530173532762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.494530173532762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.494530173532762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.494530173532762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.494530173532762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.494530173532762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.494530173532762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.494530173532762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.494530173532762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.423793054878179 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.423793054878179 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.423793054878179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.423793054878179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.466172360365997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.466172360365997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.466172360365997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.466172360365997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.466172360365997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.466172360365997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.466172360365997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.466172360365997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.466172360365997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.466172360365997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.466172360365997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.466172360365997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.466172360365997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.466172360365997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.466172360365997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.466172360365997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.466172360365997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444982707622088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.444982707622088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.444982707622088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.444982707622088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.444982707622088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444982707622088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444982707622088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444982707622088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444982707622088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444982707622088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444982707622088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444982707622088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444982707622088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444982707622088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444982707622088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444982707622088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444982707622088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.434387881250133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.434387881250133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.434387881250133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.434387881250133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.434387881250133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.434387881250133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.434387881250133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.434387881250133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.434387881250133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.434387881250133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.434387881250133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.434387881250133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.434387881250133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.434387881250133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.434387881250133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.434387881250133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.434387881250133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.429090468064156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.429090468064156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.429090468064156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.429090468064156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.429090468064156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.429090468064156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.429090468064156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.429090468064156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.429090468064156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.429090468064156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.429090468064156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.429090468064156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.429090468064156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.429090468064156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.429090468064156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.429090468064156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.429090468064156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.423793054878179 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.423793054878179 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.423793054878179 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.423793054878179 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.423793054878179 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.423793054878179 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.423793054878179 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.423793054878179 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.423793054878179 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.423793054878179 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.423793054878179 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.423793054878179 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.423793054878179 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.423793054878179 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.423793054878179 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.423793054878179 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.423793054878179 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0718721492764707 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0718721492764707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0718721492764707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0718721492764707 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0790593642041177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0790593642041177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0790593642041177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0790593642041177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0790593642041177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0790593642041177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0790593642041177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0790593642041177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0790593642041177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0790593642041177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0790593642041177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0790593642041177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0790593642041177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0790593642041177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0790593642041177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0790593642041177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0790593642041177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0754657567402942 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0754657567402942 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0754657567402942 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0754657567402942 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0754657567402942 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0754657567402942 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0754657567402942 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0754657567402942 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0754657567402942 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0754657567402942 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0754657567402942 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0754657567402942 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0754657567402942 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0754657567402942 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0754657567402942 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0754657567402942 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0754657567402942 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0736689530083824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0736689530083824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0736689530083824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0736689530083824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0736689530083824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0736689530083824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0736689530083824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0736689530083824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0736689530083824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0736689530083824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0736689530083824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0736689530083824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0736689530083824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0736689530083824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0736689530083824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0736689530083824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0736689530083824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0727705511424266 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0727705511424266 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0727705511424266 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0727705511424266 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0727705511424266 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0727705511424266 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0727705511424266 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0727705511424266 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0727705511424266 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0727705511424266 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0727705511424266 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0727705511424266 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0727705511424266 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0727705511424266 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0727705511424266 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0727705511424266 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0727705511424266 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718721492764707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0718721492764707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0718721492764707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0718721492764707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0718721492764707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0718721492764707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0718721492764707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0718721492764707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0718721492764707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0718721492764707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0718721492764707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0718721492764707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0718721492764707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0718721492764707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0718721492764707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0718721492764707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0718721492764707 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.356105733479412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.356105733479412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.356105733479412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.356105733479412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.320495160131471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.320495160131471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.320495160131471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.320495160131471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.320495160131471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.320495160131471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.320495160131471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.320495160131471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.320495160131471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.320495160131471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.320495160131471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.320495160131471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.320495160131471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.320495160131471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.320495160131471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.320495160131471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.320495160131471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338300446805442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.338300446805442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.338300446805442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.338300446805442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.338300446805442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338300446805442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338300446805442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338300446805442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338300446805442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338300446805442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338300446805442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338300446805442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338300446805442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338300446805442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338300446805442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338300446805442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338300446805442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347203090142427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.347203090142427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.347203090142427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.347203090142427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.347203090142427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.347203090142427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.347203090142427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.347203090142427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347203090142427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.347203090142427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.347203090142427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.347203090142427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.347203090142427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.347203090142427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.347203090142427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.347203090142427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.347203090142427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35165441181092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.35165441181092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.35165441181092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.35165441181092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.35165441181092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.35165441181092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.35165441181092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.35165441181092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.35165441181092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.35165441181092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.35165441181092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.35165441181092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.35165441181092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.35165441181092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.35165441181092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.35165441181092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.35165441181092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356105733479412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.356105733479412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.356105733479412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.356105733479412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.356105733479412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.356105733479412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.356105733479412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.356105733479412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356105733479412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.356105733479412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.356105733479412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.356105733479412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.356105733479412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.356105733479412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.356105733479412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.356105733479412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.356105733479412 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0501797893120758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0501797893120758 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0501797893120758 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0501797893120758 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0451618103808682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0451618103808682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0451618103808682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0451618103808682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0451618103808682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0451618103808682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0451618103808682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0451618103808682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0451618103808682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0451618103808682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0451618103808682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0451618103808682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0451618103808682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0451618103808682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0451618103808682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0451618103808682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0451618103808682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.047670799846472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.047670799846472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.047670799846472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.047670799846472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.047670799846472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.047670799846472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.047670799846472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.047670799846472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.047670799846472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.047670799846472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.047670799846472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.047670799846472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.047670799846472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.047670799846472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.047670799846472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.047670799846472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.047670799846472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0489252945792739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0489252945792739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0489252945792739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0489252945792739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0489252945792739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0489252945792739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0489252945792739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0489252945792739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0489252945792739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0489252945792739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0489252945792739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0489252945792739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0489252945792739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0489252945792739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0489252945792739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0489252945792739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0489252945792739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0495525419456748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0495525419456748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0495525419456748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0495525419456748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0495525419456748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0495525419456748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0495525419456748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0495525419456748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0495525419456748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0495525419456748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0495525419456748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0495525419456748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0495525419456748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0495525419456748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0495525419456748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0495525419456748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0495525419456748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0501797893120758 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0501797893120758 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0501797893120758 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0501797893120758 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0501797893120758 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0501797893120758 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0501797893120758 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0501797893120758 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0501797893120758 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0501797893120758 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0501797893120758 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0501797893120758 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0501797893120758 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0501797893120758 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0501797893120758 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0501797893120758 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0501797893120758 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443133282975472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443133282975472 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443133282975472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443133282975472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398819954677925 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398819954677925 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.398819954677925 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.398819954677925 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.398819954677925 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.398819954677925 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.398819954677925 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.398819954677925 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.398819954677925 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398819954677925 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.398819954677925 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.398819954677925 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.398819954677925 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.398819954677925 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.398819954677925 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.398819954677925 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.398819954677925 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.398819954677925 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420976618826699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420976618826699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.420976618826699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.420976618826699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.420976618826699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.420976618826699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.420976618826699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.420976618826699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.420976618826699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420976618826699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.420976618826699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.420976618826699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.420976618826699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.420976618826699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.420976618826699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.420976618826699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.420976618826699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.420976618826699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432054950901085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432054950901085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.432054950901085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.432054950901085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.432054950901085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.432054950901085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.432054950901085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.432054950901085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.432054950901085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432054950901085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.432054950901085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.432054950901085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.432054950901085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.432054950901085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.432054950901085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.432054950901085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.432054950901085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.432054950901085 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.437594116938279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.437594116938279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.437594116938279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.437594116938279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.437594116938279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.437594116938279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.437594116938279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.437594116938279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.437594116938279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.437594116938279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.437594116938279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.437594116938279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.437594116938279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.437594116938279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.437594116938279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.437594116938279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.437594116938279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.437594116938279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.443133282975472 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.443133282975472 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.443133282975472 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.443133282975472 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443133282975472 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443133282975472 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443133282975472 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443133282975472 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443133282975472 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443133282975472 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443133282975472 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443133282975472 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443133282975472 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443133282975472 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443133282975472 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443133282975472 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.131635937642855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.131635937642855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.131635937642855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.131635937642855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.14479953140714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.14479953140714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.14479953140714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.14479953140714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.14479953140714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.14479953140714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.14479953140714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.14479953140714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.14479953140714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.14479953140714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.14479953140714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.14479953140714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.14479953140714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.14479953140714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.14479953140714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.14479953140714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.14479953140714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.14479953140714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138217734524997 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138217734524997 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.138217734524997 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.138217734524997 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.138217734524997 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.138217734524997 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.138217734524997 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.138217734524997 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.138217734524997 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138217734524997 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.138217734524997 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.138217734524997 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.138217734524997 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.138217734524997 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.138217734524997 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.138217734524997 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.138217734524997 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.138217734524997 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134926836083926 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134926836083926 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.134926836083926 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.134926836083926 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.134926836083926 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.134926836083926 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.134926836083926 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.134926836083926 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.134926836083926 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134926836083926 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.134926836083926 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.134926836083926 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.134926836083926 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.134926836083926 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.134926836083926 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.134926836083926 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.134926836083926 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.134926836083926 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.13328138686339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.13328138686339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.13328138686339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.13328138686339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.13328138686339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.13328138686339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.13328138686339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.13328138686339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.13328138686339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.13328138686339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.13328138686339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.13328138686339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.13328138686339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.13328138686339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.13328138686339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.13328138686339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.13328138686339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.13328138686339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.131635937642855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.131635937642855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.131635937642855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.131635937642855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.131635937642855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.131635937642855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.131635937642855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131635937642855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.131635937642855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.131635937642855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.131635937642855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.131635937642855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.131635937642855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.131635937642855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.131635937642855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.131635937642855 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.733024862316448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.733024862316448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.733024862316448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.733024862316448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.806327348548093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.806327348548093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.806327348548093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.806327348548093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.806327348548093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.806327348548093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.806327348548093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.806327348548093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.806327348548093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.806327348548093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.806327348548093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.806327348548093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.806327348548093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.806327348548093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.806327348548093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.806327348548093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.806327348548093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.76967610543227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.76967610543227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.76967610543227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.76967610543227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.76967610543227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.76967610543227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.76967610543227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.76967610543227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.76967610543227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.76967610543227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.76967610543227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.76967610543227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.76967610543227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.76967610543227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.76967610543227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.76967610543227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.76967610543227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.751350483874359 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.751350483874359 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.751350483874359 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.751350483874359 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.751350483874359 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.751350483874359 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.751350483874359 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.751350483874359 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.751350483874359 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.751350483874359 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.751350483874359 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.751350483874359 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.751350483874359 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.751350483874359 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.751350483874359 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.751350483874359 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.751350483874359 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.742187673095404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.742187673095404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.742187673095404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.742187673095404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.742187673095404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.742187673095404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.742187673095404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.742187673095404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.742187673095404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.742187673095404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.742187673095404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.742187673095404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.742187673095404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.742187673095404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.742187673095404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.742187673095404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.742187673095404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.733024862316448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.733024862316448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.733024862316448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.733024862316448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.733024862316448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.733024862316448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.733024862316448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.733024862316448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.733024862316448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.733024862316448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.733024862316448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.733024862316448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.733024862316448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.733024862316448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.733024862316448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.733024862316448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.733024862316448 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.094080707667777 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.094080707667777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.094080707667777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.094080707667777 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0846726369009993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0846726369009993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0846726369009993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0846726369009993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0846726369009993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0846726369009993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0846726369009993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0846726369009993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0846726369009993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0846726369009993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0846726369009993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0846726369009993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0846726369009993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0846726369009993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0846726369009993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0846726369009993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0846726369009993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0893766722843881 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0893766722843881 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0893766722843881 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0893766722843881 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0893766722843881 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0893766722843881 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0893766722843881 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0893766722843881 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0893766722843881 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0893766722843881 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0893766722843881 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0893766722843881 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0893766722843881 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0893766722843881 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0893766722843881 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0893766722843881 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0893766722843881 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0917286899760826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0917286899760826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0917286899760826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0917286899760826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0917286899760826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0917286899760826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0917286899760826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0917286899760826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0917286899760826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0917286899760826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0917286899760826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0917286899760826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0917286899760826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0917286899760826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0917286899760826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0917286899760826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0917286899760826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0929046988219298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0929046988219298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0929046988219298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0929046988219298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0929046988219298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0929046988219298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0929046988219298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0929046988219298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0929046988219298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0929046988219298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0929046988219298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0929046988219298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0929046988219298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0929046988219298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0929046988219298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0929046988219298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0929046988219298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094080707667777 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.094080707667777 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.094080707667777 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.094080707667777 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.094080707667777 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.094080707667777 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.094080707667777 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.094080707667777 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094080707667777 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.094080707667777 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.094080707667777 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.094080707667777 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.094080707667777 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.094080707667777 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.094080707667777 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.094080707667777 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.094080707667777 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.127440194550294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.127440194550294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.127440194550294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.127440194550294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.140184214005323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.140184214005323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.140184214005323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.140184214005323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.140184214005323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.140184214005323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.140184214005323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.140184214005323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.140184214005323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.140184214005323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.140184214005323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.140184214005323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.140184214005323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.140184214005323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.140184214005323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.140184214005323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.140184214005323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133812204277808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.133812204277808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.133812204277808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.133812204277808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.133812204277808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.133812204277808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.133812204277808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.133812204277808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.133812204277808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.133812204277808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.133812204277808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.133812204277808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.133812204277808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.133812204277808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.133812204277808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.133812204277808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.133812204277808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130626199414051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.130626199414051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.130626199414051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.130626199414051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.130626199414051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.130626199414051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.130626199414051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.130626199414051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130626199414051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.130626199414051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.130626199414051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.130626199414051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.130626199414051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.130626199414051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.130626199414051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.130626199414051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.130626199414051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.129033196982172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.129033196982172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.129033196982172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.129033196982172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.129033196982172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.129033196982172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.129033196982172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.129033196982172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.129033196982172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.129033196982172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.129033196982172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.129033196982172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.129033196982172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.129033196982172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.129033196982172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.129033196982172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.129033196982172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127440194550294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.127440194550294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.127440194550294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.127440194550294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.127440194550294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.127440194550294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.127440194550294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.127440194550294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127440194550294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.127440194550294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.127440194550294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.127440194550294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.127440194550294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.127440194550294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.127440194550294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.127440194550294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.127440194550294 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0120596487135449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0120596487135449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0120596487135449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0120596487135449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0108536838421904 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0108536838421904 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0108536838421904 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0108536838421904 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0108536838421904 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0108536838421904 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0108536838421904 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0108536838421904 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0108536838421904 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0108536838421904 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0108536838421904 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0108536838421904 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0108536838421904 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0108536838421904 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0108536838421904 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0108536838421904 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0108536838421904 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0114566662778677 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0114566662778677 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0114566662778677 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0114566662778677 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0114566662778677 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0114566662778677 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0114566662778677 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0114566662778677 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0114566662778677 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0114566662778677 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0114566662778677 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0114566662778677 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0114566662778677 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0114566662778677 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0114566662778677 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0114566662778677 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0114566662778677 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0117581574957063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0117581574957063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0117581574957063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0117581574957063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0117581574957063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0117581574957063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0117581574957063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0117581574957063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0117581574957063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0117581574957063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0117581574957063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0117581574957063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0117581574957063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0117581574957063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0117581574957063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0117581574957063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0117581574957063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0119089031046256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0119089031046256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0119089031046256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0119089031046256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0119089031046256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0119089031046256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0119089031046256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0119089031046256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0119089031046256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0119089031046256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0119089031046256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0119089031046256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0119089031046256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0119089031046256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0119089031046256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0119089031046256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0119089031046256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0120596487135449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0120596487135449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0120596487135449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0120596487135449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0120596487135449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0120596487135449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0120596487135449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0120596487135449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0120596487135449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0120596487135449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0120596487135449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0120596487135449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0120596487135449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0120596487135449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0120596487135449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0120596487135449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0120596487135449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.314586198157972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.314586198157972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.314586198157972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.314586198157972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.283127578342175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.283127578342175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.283127578342175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.283127578342175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.283127578342175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.283127578342175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.283127578342175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.283127578342175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.283127578342175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.283127578342175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.283127578342175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.283127578342175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.283127578342175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.283127578342175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.283127578342175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.283127578342175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.283127578342175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.298856888250073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.298856888250073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.298856888250073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.298856888250073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.298856888250073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.298856888250073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.298856888250073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.298856888250073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.298856888250073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.298856888250073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.298856888250073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.298856888250073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.298856888250073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.298856888250073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.298856888250073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.298856888250073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.298856888250073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306721543204023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.306721543204023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.306721543204023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.306721543204023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.306721543204023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.306721543204023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.306721543204023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.306721543204023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306721543204023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.306721543204023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.306721543204023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.306721543204023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.306721543204023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.306721543204023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.306721543204023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.306721543204023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.306721543204023 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310653870680997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.310653870680997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.310653870680997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.310653870680997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.310653870680997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.310653870680997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.310653870680997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.310653870680997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310653870680997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.310653870680997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.310653870680997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.310653870680997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.310653870680997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.310653870680997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.310653870680997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.310653870680997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.310653870680997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314586198157972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314586198157972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314586198157972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314586198157972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314586198157972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314586198157972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314586198157972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314586198157972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314586198157972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314586198157972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314586198157972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314586198157972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.314586198157972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.314586198157972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.314586198157972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.314586198157972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.314586198157972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112189336797645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112189336797645 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112189336797645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112189336797645 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.10097040311788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.10097040311788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.10097040311788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.10097040311788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.10097040311788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.10097040311788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.10097040311788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.10097040311788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.10097040311788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.10097040311788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.10097040311788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.10097040311788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.10097040311788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.10097040311788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.10097040311788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.10097040311788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.10097040311788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106579869957763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.106579869957763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.106579869957763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.106579869957763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.106579869957763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.106579869957763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.106579869957763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.106579869957763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106579869957763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.106579869957763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.106579869957763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.106579869957763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.106579869957763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.106579869957763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.106579869957763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.106579869957763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.106579869957763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109384603377704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.109384603377704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.109384603377704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.109384603377704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.109384603377704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.109384603377704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.109384603377704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.109384603377704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109384603377704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.109384603377704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.109384603377704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.109384603377704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.109384603377704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.109384603377704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.109384603377704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.109384603377704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.109384603377704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110786970087674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.110786970087674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.110786970087674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.110786970087674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.110786970087674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.110786970087674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.110786970087674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.110786970087674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110786970087674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.110786970087674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.110786970087674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.110786970087674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.110786970087674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.110786970087674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.110786970087674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.110786970087674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.110786970087674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112189336797645 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.112189336797645 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.112189336797645 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.112189336797645 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112189336797645 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112189336797645 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112189336797645 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112189336797645 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112189336797645 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112189336797645 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112189336797645 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112189336797645 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112189336797645 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112189336797645 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112189336797645 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112189336797645 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112189336797645 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.22792452223224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.22792452223224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.22792452223224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.22792452223224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35071697445546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.35071697445546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.35071697445546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.35071697445546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.35071697445546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.35071697445546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.35071697445546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35071697445546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35071697445546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35071697445546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.35071697445546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.35071697445546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.35071697445546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.35071697445546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.35071697445546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.35071697445546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.35071697445546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28932074834385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.28932074834385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.28932074834385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.28932074834385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.28932074834385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28932074834385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28932074834385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28932074834385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28932074834385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28932074834385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28932074834385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28932074834385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28932074834385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28932074834385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28932074834385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28932074834385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28932074834385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25862263528805 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.25862263528805 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.25862263528805 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.25862263528805 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.25862263528805 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.25862263528805 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.25862263528805 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25862263528805 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.25862263528805 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.25862263528805 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.25862263528805 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.25862263528805 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.25862263528805 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.25862263528805 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.25862263528805 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.25862263528805 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.25862263528805 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24327357876014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.24327357876014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.24327357876014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.24327357876014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.24327357876014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.24327357876014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.24327357876014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24327357876014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.24327357876014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.24327357876014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.24327357876014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.24327357876014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.24327357876014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.24327357876014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.24327357876014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.24327357876014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.24327357876014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22792452223224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.22792452223224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.22792452223224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.22792452223224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.22792452223224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.22792452223224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.22792452223224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22792452223224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.22792452223224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.22792452223224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.22792452223224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.22792452223224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.22792452223224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.22792452223224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.22792452223224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.22792452223224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.22792452223224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.36090938733155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.36090938733155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.36090938733155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.36090938733155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49700032606471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.49700032606471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.49700032606471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.49700032606471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.49700032606471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.49700032606471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.49700032606471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49700032606471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.49700032606471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49700032606471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.49700032606471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.49700032606471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.49700032606471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.49700032606471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49700032606471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.49700032606471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.49700032606471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42895485669813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.42895485669813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.42895485669813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.42895485669813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.42895485669813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42895485669813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42895485669813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42895485669813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42895485669813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42895485669813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42895485669813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42895485669813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42895485669813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42895485669813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42895485669813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42895485669813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42895485669813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.39493212201484 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.39493212201484 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.39493212201484 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.39493212201484 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.39493212201484 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.39493212201484 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.39493212201484 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.39493212201484 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.39493212201484 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.39493212201484 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.39493212201484 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.39493212201484 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.39493212201484 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.39493212201484 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.39493212201484 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.39493212201484 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.39493212201484 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3779207546732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.3779207546732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.3779207546732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.3779207546732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.3779207546732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3779207546732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3779207546732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3779207546732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3779207546732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3779207546732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3779207546732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3779207546732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3779207546732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3779207546732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3779207546732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3779207546732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3779207546732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36090938733155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36090938733155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36090938733155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36090938733155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36090938733155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36090938733155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36090938733155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36090938733155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36090938733155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36090938733155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36090938733155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36090938733155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.36090938733155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.36090938733155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.36090938733155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.36090938733155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.36090938733155 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.84827513052802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.84827513052802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.84827513052802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.84827513052802 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.13310264358082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.13310264358082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.13310264358082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.13310264358082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.13310264358082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.13310264358082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.13310264358082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.13310264358082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.13310264358082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.13310264358082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.13310264358082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.13310264358082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.13310264358082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.13310264358082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.13310264358082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.13310264358082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.13310264358082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.99068888705442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.99068888705442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.99068888705442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.99068888705442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.99068888705442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.99068888705442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.99068888705442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.99068888705442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.99068888705442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.99068888705442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.99068888705442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.99068888705442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.99068888705442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.99068888705442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.99068888705442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.99068888705442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.99068888705442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.91948200879122 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.91948200879122 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.91948200879122 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.91948200879122 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.91948200879122 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.91948200879122 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.91948200879122 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.91948200879122 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.91948200879122 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.91948200879122 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.91948200879122 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.91948200879122 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.91948200879122 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.91948200879122 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.91948200879122 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.91948200879122 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.91948200879122 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.88387856965962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.88387856965962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.88387856965962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.88387856965962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.88387856965962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.88387856965962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.88387856965962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.88387856965962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.88387856965962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.88387856965962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.88387856965962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.88387856965962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.88387856965962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.88387856965962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.88387856965962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.88387856965962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.88387856965962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84827513052802 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.84827513052802 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.84827513052802 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.84827513052802 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.84827513052802 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.84827513052802 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.84827513052802 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.84827513052802 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.84827513052802 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.84827513052802 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.84827513052802 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.84827513052802 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.84827513052802 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.84827513052802 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.84827513052802 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.84827513052802 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.84827513052802 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.03033010344532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.03033010344532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.03033010344532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.03033010344532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.33336311378985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.33336311378985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.33336311378985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.33336311378985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.33336311378985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.33336311378985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.33336311378985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33336311378985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33336311378985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33336311378985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.33336311378985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.33336311378985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.33336311378985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.33336311378985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.33336311378985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.33336311378985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.33336311378985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.18184660861759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.18184660861759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.18184660861759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.18184660861759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.18184660861759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.18184660861759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.18184660861759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18184660861759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18184660861759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18184660861759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.18184660861759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.18184660861759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.18184660861759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.18184660861759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.18184660861759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.18184660861759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.18184660861759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.10608835603145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.10608835603145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.10608835603145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.10608835603145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.10608835603145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.10608835603145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.10608835603145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.10608835603145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.10608835603145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.10608835603145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.10608835603145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.10608835603145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.10608835603145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.10608835603145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.10608835603145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.10608835603145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.10608835603145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06820922973839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.06820922973839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06820922973839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06820922973839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06820922973839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06820922973839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06820922973839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06820922973839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06820922973839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06820922973839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06820922973839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06820922973839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.06820922973839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.06820922973839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.06820922973839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.06820922973839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.06820922973839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.03033010344532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.03033010344532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.03033010344532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.03033010344532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.03033010344532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.03033010344532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.03033010344532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.03033010344532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.03033010344532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.03033010344532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.03033010344532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.03033010344532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.03033010344532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.03033010344532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.03033010344532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.03033010344532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.03033010344532 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.130616826130773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.130616826130773 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.130616826130773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.130616826130773 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.117555143517696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.124085984824235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127351405477504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.128984115804139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.130616826130773 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.130616826130773 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0473615526382254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0473615526382254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0473615526382254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0473615526382254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0520977079020479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0520977079020479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0520977079020479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0520977079020479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0520977079020479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0520977079020479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0520977079020479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0520977079020479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0520977079020479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0520977079020479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0520977079020479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0520977079020479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0520977079020479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0520977079020479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0520977079020479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0520977079020479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0520977079020479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0520977079020479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0497296302701367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0497296302701367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0497296302701367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0497296302701367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0497296302701367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0497296302701367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0497296302701367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0497296302701367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0497296302701367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0497296302701367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0497296302701367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0497296302701367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0497296302701367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0497296302701367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0497296302701367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0497296302701367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0497296302701367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0497296302701367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.048545591454181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.048545591454181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.048545591454181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.048545591454181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.048545591454181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.048545591454181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.048545591454181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.048545591454181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.048545591454181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.048545591454181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.048545591454181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.048545591454181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.048545591454181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.048545591454181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.048545591454181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.048545591454181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.048545591454181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.048545591454181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0479535720462032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0479535720462032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0479535720462032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0479535720462032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0479535720462032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0479535720462032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0479535720462032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0479535720462032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0479535720462032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0479535720462032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0479535720462032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0479535720462032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0479535720462032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0479535720462032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0479535720462032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0479535720462032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0479535720462032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0479535720462032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0473615526382254 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0473615526382254 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0473615526382254 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0473615526382254 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0473615526382254 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0473615526382254 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473615526382254 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473615526382254 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0473615526382254 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0473615526382254 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0473615526382254 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0473615526382254 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0473615526382254 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0473615526382254 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0473615526382254 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0473615526382254 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.257834169803875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.257834169803875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.257834169803875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.257834169803875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.283617586784262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.283617586784262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.283617586784262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.283617586784262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.283617586784262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.283617586784262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.283617586784262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.283617586784262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.283617586784262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.283617586784262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.283617586784262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.283617586784262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.283617586784262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.283617586784262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.283617586784262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.283617586784262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.283617586784262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.283617586784262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270725878294069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270725878294069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.270725878294069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.270725878294069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.270725878294069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.270725878294069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.270725878294069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.270725878294069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.270725878294069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.270725878294069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.270725878294069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.270725878294069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.270725878294069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.270725878294069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.270725878294069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.270725878294069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.270725878294069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.270725878294069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.264280024048972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.264280024048972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.264280024048972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.264280024048972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.264280024048972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.264280024048972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.264280024048972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.264280024048972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.264280024048972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.264280024048972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.264280024048972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.264280024048972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.264280024048972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.264280024048972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.264280024048972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.264280024048972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.264280024048972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.264280024048972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.261057096926423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.261057096926423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.261057096926423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.261057096926423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.261057096926423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.261057096926423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.261057096926423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.261057096926423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.261057096926423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.261057096926423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.261057096926423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.261057096926423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.261057096926423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.261057096926423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.261057096926423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.261057096926423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.261057096926423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.261057096926423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.257834169803875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.257834169803875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.257834169803875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.257834169803875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.257834169803875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.257834169803875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.257834169803875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257834169803875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.257834169803875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.257834169803875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.257834169803875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.257834169803875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.257834169803875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.257834169803875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.257834169803875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.257834169803875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.177059354318461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.177059354318461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.177059354318461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.177059354318461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.194765289750307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.194765289750307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.194765289750307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.194765289750307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.194765289750307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.194765289750307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.194765289750307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.194765289750307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.194765289750307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.194765289750307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.194765289750307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.194765289750307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.194765289750307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.194765289750307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.194765289750307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.194765289750307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.194765289750307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.194765289750307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.185912322034384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.185912322034384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.185912322034384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.185912322034384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.185912322034384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.185912322034384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.185912322034384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.185912322034384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.185912322034384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.185912322034384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.185912322034384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.185912322034384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.185912322034384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.185912322034384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.185912322034384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.185912322034384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.185912322034384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.185912322034384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.181485838176422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.181485838176422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.181485838176422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.181485838176422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.181485838176422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.181485838176422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.181485838176422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.181485838176422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.181485838176422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.181485838176422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.181485838176422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.181485838176422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.181485838176422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.181485838176422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.181485838176422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.181485838176422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.181485838176422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.181485838176422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179272596247441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179272596247441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.179272596247441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179272596247441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179272596247441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179272596247441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179272596247441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179272596247441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179272596247441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179272596247441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179272596247441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179272596247441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179272596247441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179272596247441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179272596247441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179272596247441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179272596247441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.179272596247441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.177059354318461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.177059354318461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.177059354318461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.177059354318461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.177059354318461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.177059354318461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.177059354318461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177059354318461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.177059354318461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.177059354318461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.177059354318461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.177059354318461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.177059354318461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.177059354318461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.177059354318461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.177059354318461 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0302394790632196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0302394790632196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0302394790632196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0302394790632196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0332634269695416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0332634269695416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0332634269695416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0332634269695416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0332634269695416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0332634269695416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0332634269695416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0332634269695416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0332634269695416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0332634269695416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0332634269695416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0332634269695416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0332634269695416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0332634269695416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0332634269695416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0332634269695416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0332634269695416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0317514530163806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0317514530163806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0317514530163806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0317514530163806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0317514530163806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0317514530163806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0317514530163806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0317514530163806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0317514530163806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0317514530163806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0317514530163806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0317514530163806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0317514530163806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0317514530163806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0317514530163806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0317514530163806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0317514530163806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0309954660398001 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0309954660398001 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0309954660398001 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0309954660398001 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0309954660398001 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0309954660398001 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0309954660398001 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0309954660398001 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0309954660398001 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0309954660398001 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0309954660398001 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0309954660398001 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0309954660398001 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0309954660398001 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0309954660398001 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0309954660398001 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0309954660398001 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0306174725515098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0306174725515098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0306174725515098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0306174725515098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0306174725515098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0306174725515098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0306174725515098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0306174725515098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0306174725515098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0306174725515098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0306174725515098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0306174725515098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0306174725515098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0306174725515098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0306174725515098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0306174725515098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0306174725515098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0302394790632196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0302394790632196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0302394790632196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0302394790632196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0302394790632196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0302394790632196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0302394790632196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0302394790632196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0302394790632196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0302394790632196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0302394790632196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0302394790632196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0302394790632196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0302394790632196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0302394790632196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0302394790632196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0302394790632196 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.241034828347065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.241034828347065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.241034828347065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.241034828347065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.216931345512359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.216931345512359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.216931345512359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.216931345512359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.216931345512359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.216931345512359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.216931345512359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.216931345512359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.216931345512359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.216931345512359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.216931345512359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.216931345512359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.216931345512359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.216931345512359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.216931345512359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.216931345512359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.216931345512359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228983086929712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.228983086929712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.228983086929712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.228983086929712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.228983086929712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228983086929712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228983086929712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228983086929712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228983086929712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228983086929712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228983086929712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228983086929712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228983086929712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228983086929712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228983086929712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228983086929712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228983086929712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235008957638389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.235008957638389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.235008957638389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.235008957638389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.235008957638389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.235008957638389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.235008957638389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.235008957638389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235008957638389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.235008957638389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.235008957638389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.235008957638389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.235008957638389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.235008957638389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.235008957638389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.235008957638389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.235008957638389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.238021892992727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.238021892992727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.238021892992727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.238021892992727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.238021892992727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.238021892992727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.238021892992727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.238021892992727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.238021892992727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.238021892992727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.238021892992727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.238021892992727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.238021892992727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.238021892992727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.238021892992727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.238021892992727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.238021892992727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241034828347065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.241034828347065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.241034828347065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.241034828347065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.241034828347065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.241034828347065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.241034828347065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.241034828347065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241034828347065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.241034828347065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.241034828347065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.241034828347065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.241034828347065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.241034828347065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.241034828347065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.241034828347065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.241034828347065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212864757931292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212864757931292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212864757931292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212864757931292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.234151233724421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.234151233724421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.234151233724421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.234151233724421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.234151233724421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.234151233724421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.234151233724421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.234151233724421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.234151233724421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.234151233724421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.234151233724421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.234151233724421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.234151233724421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.234151233724421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.234151233724421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.234151233724421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.234151233724421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.223507995827857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.223507995827857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.223507995827857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.223507995827857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.223507995827857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.223507995827857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.223507995827857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.223507995827857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.223507995827857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.223507995827857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.223507995827857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.223507995827857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.223507995827857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.223507995827857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.223507995827857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.223507995827857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.223507995827857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218186376879574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.218186376879574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.218186376879574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.218186376879574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.218186376879574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.218186376879574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.218186376879574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.218186376879574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218186376879574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218186376879574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.218186376879574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.218186376879574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.218186376879574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.218186376879574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.218186376879574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.218186376879574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.218186376879574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.215525567405433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.215525567405433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.215525567405433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.215525567405433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.215525567405433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.215525567405433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.215525567405433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.215525567405433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.215525567405433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.215525567405433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.215525567405433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.215525567405433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.215525567405433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.215525567405433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.215525567405433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.215525567405433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.215525567405433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212864757931292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.212864757931292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.212864757931292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.212864757931292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.212864757931292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.212864757931292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212864757931292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212864757931292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212864757931292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212864757931292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212864757931292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212864757931292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212864757931292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212864757931292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212864757931292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212864757931292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212864757931292 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.51107567110866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.51107567110866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.51107567110866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.51107567110866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.15996810399779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.15996810399779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.15996810399779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.15996810399779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.15996810399779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.15996810399779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.15996810399779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.15996810399779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.15996810399779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.15996810399779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.15996810399779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.15996810399779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.15996810399779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.15996810399779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.15996810399779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.15996810399779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.15996810399779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.33552188755323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33552188755323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33552188755323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33552188755323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33552188755323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33552188755323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33552188755323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33552188755323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33552188755323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33552188755323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33552188755323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33552188755323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.33552188755323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.33552188755323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.33552188755323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.33552188755323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.33552188755323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42329877933094 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.42329877933094 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.42329877933094 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.42329877933094 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.42329877933094 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42329877933094 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42329877933094 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42329877933094 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42329877933094 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42329877933094 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42329877933094 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42329877933094 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42329877933094 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42329877933094 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42329877933094 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42329877933094 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42329877933094 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.4671872252198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.4671872252198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.4671872252198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.4671872252198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.4671872252198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.4671872252198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.4671872252198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.4671872252198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.4671872252198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.4671872252198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.4671872252198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.4671872252198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.4671872252198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.4671872252198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.4671872252198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.4671872252198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.4671872252198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.51107567110866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.51107567110866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.51107567110866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.51107567110866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.51107567110866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.51107567110866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.51107567110866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.51107567110866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.51107567110866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.51107567110866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.51107567110866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.51107567110866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.51107567110866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.51107567110866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.51107567110866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.51107567110866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.51107567110866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408345639700774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408345639700774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408345639700774 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408345639700774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449180203670851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449180203670851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.449180203670851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.449180203670851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.449180203670851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.449180203670851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.449180203670851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.449180203670851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.449180203670851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449180203670851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.449180203670851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.449180203670851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.449180203670851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.449180203670851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.449180203670851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.449180203670851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.449180203670851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.449180203670851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.428762921685813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.428762921685813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.428762921685813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.428762921685813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.428762921685813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.428762921685813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.428762921685813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.428762921685813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.428762921685813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.428762921685813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.428762921685813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.428762921685813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.428762921685813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.428762921685813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.428762921685813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.428762921685813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.428762921685813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.428762921685813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.418554280693293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.418554280693293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.418554280693293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.418554280693293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.418554280693293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.418554280693293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.418554280693293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.418554280693293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.418554280693293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.418554280693293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.418554280693293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.418554280693293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.418554280693293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.418554280693293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.418554280693293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.418554280693293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.418554280693293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.418554280693293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.413449960197034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.413449960197034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.413449960197034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.413449960197034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.413449960197034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.413449960197034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.413449960197034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.413449960197034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.413449960197034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.413449960197034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.413449960197034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.413449960197034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.413449960197034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.413449960197034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.413449960197034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.413449960197034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.413449960197034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.413449960197034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.408345639700774 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.408345639700774 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.408345639700774 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408345639700774 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408345639700774 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408345639700774 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408345639700774 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408345639700774 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408345639700774 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408345639700774 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408345639700774 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408345639700774 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408345639700774 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408345639700774 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408345639700774 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408345639700774 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.420252748325463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.420252748325463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.420252748325463 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.420252748325463 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378227473492917 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378227473492917 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.378227473492917 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.378227473492917 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.378227473492917 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.378227473492917 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.378227473492917 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.378227473492917 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.378227473492917 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378227473492917 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.378227473492917 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.378227473492917 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.378227473492917 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.378227473492917 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.378227473492917 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.378227473492917 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.378227473492917 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.378227473492917 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.39924011090919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.39924011090919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.39924011090919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.39924011090919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.39924011090919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.39924011090919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.39924011090919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.39924011090919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.39924011090919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.39924011090919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.39924011090919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.39924011090919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.39924011090919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.39924011090919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.39924011090919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.39924011090919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.39924011090919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.39924011090919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409746429617327 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409746429617327 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.409746429617327 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.409746429617327 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.409746429617327 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.409746429617327 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.409746429617327 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.409746429617327 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409746429617327 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409746429617327 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.409746429617327 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.409746429617327 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.409746429617327 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.409746429617327 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.409746429617327 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.409746429617327 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.409746429617327 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.409746429617327 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414999588971395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414999588971395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.414999588971395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.414999588971395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.414999588971395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.414999588971395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414999588971395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414999588971395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414999588971395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414999588971395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414999588971395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414999588971395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414999588971395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414999588971395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414999588971395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414999588971395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414999588971395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414999588971395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.420252748325463 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.420252748325463 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.420252748325463 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.420252748325463 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.420252748325463 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.420252748325463 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.420252748325463 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420252748325463 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.420252748325463 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.420252748325463 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.420252748325463 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.420252748325463 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.420252748325463 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.420252748325463 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.420252748325463 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.420252748325463 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08759592437447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08759592437447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08759592437447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08759592437447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.978836331937026 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.978836331937026 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.978836331937026 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.978836331937026 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.978836331937026 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.978836331937026 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.978836331937026 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.978836331937026 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.978836331937026 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.978836331937026 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.978836331937026 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.978836331937026 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.978836331937026 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.978836331937026 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.978836331937026 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.978836331937026 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.978836331937026 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.03321612815575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.03321612815575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.03321612815575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.03321612815575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.03321612815575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.03321612815575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.03321612815575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.03321612815575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.03321612815575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.03321612815575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.03321612815575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.03321612815575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.03321612815575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.03321612815575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.03321612815575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.03321612815575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.03321612815575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.06040602626511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.06040602626511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.06040602626511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.06040602626511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.06040602626511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.06040602626511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.06040602626511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.06040602626511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.06040602626511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.06040602626511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.06040602626511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.06040602626511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.06040602626511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.06040602626511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.06040602626511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.06040602626511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.06040602626511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.07400097531979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.07400097531979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.07400097531979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.07400097531979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.07400097531979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.07400097531979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.07400097531979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.07400097531979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.07400097531979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.07400097531979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.07400097531979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.07400097531979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.07400097531979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.07400097531979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.07400097531979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.07400097531979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.07400097531979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08759592437447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.08759592437447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.08759592437447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.08759592437447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08759592437447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08759592437447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08759592437447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08759592437447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08759592437447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08759592437447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08759592437447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08759592437447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08759592437447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08759592437447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08759592437447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08759592437447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08759592437447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14071856206849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14071856206849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14071856206849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14071856206849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02664670586164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02664670586164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02664670586164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02664670586164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02664670586164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02664670586164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02664670586164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02664670586164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02664670586164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02664670586164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02664670586164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02664670586164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02664670586164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02664670586164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02664670586164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02664670586164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.02664670586164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08368263396506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.08368263396506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.08368263396506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.08368263396506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08368263396506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08368263396506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08368263396506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08368263396506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08368263396506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08368263396506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08368263396506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08368263396506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08368263396506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08368263396506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08368263396506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08368263396506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08368263396506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11220059801678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11220059801678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11220059801678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11220059801678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11220059801678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11220059801678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11220059801678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11220059801678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11220059801678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11220059801678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11220059801678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11220059801678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.11220059801678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.11220059801678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.11220059801678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.11220059801678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.11220059801678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.12645958004263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.12645958004263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.12645958004263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.12645958004263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.12645958004263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.12645958004263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.12645958004263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.12645958004263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.12645958004263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.12645958004263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.12645958004263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.12645958004263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.12645958004263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.12645958004263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.12645958004263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.12645958004263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.12645958004263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14071856206849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.14071856206849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.14071856206849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.14071856206849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14071856206849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14071856206849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14071856206849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14071856206849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14071856206849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14071856206849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14071856206849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14071856206849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14071856206849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14071856206849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14071856206849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14071856206849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14071856206849 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.171384038751576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.171384038751576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.171384038751576 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.171384038751576 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188522442626734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188522442626734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.188522442626734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.188522442626734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.188522442626734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.188522442626734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.188522442626734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.188522442626734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.188522442626734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.188522442626734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188522442626734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.188522442626734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.188522442626734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.188522442626734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.188522442626734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.188522442626734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.188522442626734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.188522442626734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179953240689155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179953240689155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.179953240689155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.179953240689155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179953240689155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179953240689155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179953240689155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179953240689155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179953240689155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179953240689155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179953240689155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179953240689155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179953240689155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179953240689155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179953240689155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179953240689155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179953240689155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179953240689155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.175668639720366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.175668639720366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.175668639720366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.175668639720366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.175668639720366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.175668639720366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.175668639720366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.175668639720366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.175668639720366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.175668639720366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.175668639720366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.175668639720366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.175668639720366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.175668639720366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.175668639720366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.175668639720366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.175668639720366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.175668639720366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173526339235971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173526339235971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.173526339235971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.173526339235971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.173526339235971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.173526339235971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173526339235971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173526339235971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173526339235971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173526339235971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173526339235971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173526339235971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173526339235971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173526339235971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173526339235971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173526339235971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173526339235971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173526339235971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.171384038751576 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.171384038751576 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.171384038751576 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.171384038751576 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.171384038751576 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.171384038751576 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.171384038751576 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171384038751576 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171384038751576 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.171384038751576 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171384038751576 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.171384038751576 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.171384038751576 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.171384038751576 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.171384038751576 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.171384038751576 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.290785195955527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.290785195955527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.290785195955527 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.290785195955527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.261706676359974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.261706676359974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.261706676359974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.261706676359974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.261706676359974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.261706676359974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.261706676359974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.261706676359974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.261706676359974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.261706676359974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.261706676359974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.261706676359974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.261706676359974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.261706676359974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.261706676359974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.261706676359974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.261706676359974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.261706676359974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.27624593615775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.27624593615775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.27624593615775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.27624593615775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.27624593615775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.27624593615775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.27624593615775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.27624593615775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.27624593615775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.27624593615775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.27624593615775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.27624593615775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.27624593615775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.27624593615775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.27624593615775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.27624593615775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.27624593615775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.27624593615775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.283515566056638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.283515566056638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.283515566056638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.283515566056638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.283515566056638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.283515566056638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.283515566056638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.283515566056638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.283515566056638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.283515566056638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.283515566056638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.283515566056638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.283515566056638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.283515566056638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.283515566056638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.283515566056638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.283515566056638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.283515566056638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287150381006082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287150381006082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287150381006082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287150381006082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287150381006082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287150381006082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287150381006082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287150381006082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287150381006082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287150381006082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287150381006082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287150381006082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287150381006082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287150381006082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.287150381006082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.287150381006082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.287150381006082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.287150381006082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.290785195955527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.290785195955527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.290785195955527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.290785195955527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.290785195955527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.290785195955527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.290785195955527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.290785195955527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290785195955527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.290785195955527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.290785195955527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.290785195955527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.290785195955527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.290785195955527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.290785195955527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.290785195955527 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.124460126360623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.124460126360623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.124460126360623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.124460126360623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136906138996685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136906138996685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.136906138996685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.136906138996685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.136906138996685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.136906138996685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.136906138996685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.136906138996685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.136906138996685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.136906138996685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136906138996685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.136906138996685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.136906138996685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.136906138996685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.136906138996685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.136906138996685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.136906138996685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.136906138996685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130683132678654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130683132678654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.130683132678654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.130683132678654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.130683132678654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.130683132678654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.130683132678654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.130683132678654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.130683132678654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.130683132678654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130683132678654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.130683132678654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.130683132678654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.130683132678654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.130683132678654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.130683132678654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.130683132678654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.130683132678654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127571629519638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127571629519638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.127571629519638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.127571629519638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.127571629519638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.127571629519638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.127571629519638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.127571629519638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.127571629519638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.127571629519638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127571629519638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.127571629519638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.127571629519638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.127571629519638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.127571629519638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.127571629519638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.127571629519638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.127571629519638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126015877940131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126015877940131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.126015877940131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.126015877940131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.126015877940131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.126015877940131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.126015877940131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.126015877940131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.126015877940131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.126015877940131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126015877940131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.126015877940131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.126015877940131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.126015877940131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.126015877940131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.126015877940131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.126015877940131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.126015877940131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.124460126360623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.124460126360623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.124460126360623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.124460126360623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.124460126360623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.124460126360623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.124460126360623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.124460126360623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124460126360623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.124460126360623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.124460126360623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.124460126360623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.124460126360623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.124460126360623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.124460126360623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.124460126360623 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.2817236743055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.2817236743055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.2817236743055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.2817236743055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15355130687495 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.15355130687495 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.15355130687495 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.15355130687495 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.15355130687495 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15355130687495 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15355130687495 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15355130687495 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15355130687495 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15355130687495 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15355130687495 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15355130687495 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.15355130687495 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.15355130687495 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.15355130687495 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.15355130687495 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.15355130687495 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21763749059023 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21763749059023 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21763749059023 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21763749059023 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21763749059023 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21763749059023 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21763749059023 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21763749059023 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21763749059023 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21763749059023 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21763749059023 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21763749059023 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21763749059023 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.21763749059023 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.21763749059023 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.21763749059023 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.21763749059023 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24968058244786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.24968058244786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.24968058244786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.24968058244786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.24968058244786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.24968058244786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.24968058244786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.24968058244786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.24968058244786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.24968058244786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24968058244786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.24968058244786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.24968058244786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.24968058244786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.24968058244786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.24968058244786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.24968058244786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.26570212837668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.26570212837668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.26570212837668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.26570212837668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.26570212837668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.26570212837668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.26570212837668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.26570212837668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.26570212837668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.26570212837668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.26570212837668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.26570212837668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.26570212837668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.26570212837668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.26570212837668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.26570212837668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.26570212837668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2817236743055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2817236743055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2817236743055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2817236743055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2817236743055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2817236743055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2817236743055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2817236743055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2817236743055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2817236743055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2817236743055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2817236743055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.2817236743055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.2817236743055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.2817236743055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.2817236743055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.2817236743055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.723665095854088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.723665095854088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.723665095854088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.723665095854088 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.651298586268679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.651298586268679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.651298586268679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.651298586268679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.651298586268679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.651298586268679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.651298586268679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.651298586268679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.651298586268679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.651298586268679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.651298586268679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.651298586268679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.651298586268679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.651298586268679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.651298586268679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.651298586268679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.651298586268679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.687481841061384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.687481841061384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.687481841061384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.687481841061384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.687481841061384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.687481841061384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.687481841061384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.687481841061384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.687481841061384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.687481841061384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.687481841061384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.687481841061384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.687481841061384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.687481841061384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.687481841061384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.687481841061384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.687481841061384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.705573468457736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.705573468457736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.705573468457736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.705573468457736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.705573468457736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.705573468457736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.705573468457736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.705573468457736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.705573468457736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.705573468457736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.705573468457736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.705573468457736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.705573468457736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.705573468457736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.705573468457736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.705573468457736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.705573468457736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.714619282155912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.714619282155912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.714619282155912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.714619282155912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.714619282155912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.714619282155912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.714619282155912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.714619282155912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.714619282155912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.714619282155912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.714619282155912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.714619282155912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.714619282155912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.714619282155912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.714619282155912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.714619282155912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.714619282155912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723665095854088 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.723665095854088 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.723665095854088 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.723665095854088 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.723665095854088 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.723665095854088 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.723665095854088 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.723665095854088 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.723665095854088 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.723665095854088 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723665095854088 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.723665095854088 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.723665095854088 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.723665095854088 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.723665095854088 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.723665095854088 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.723665095854088 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.803468813946996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.803468813946996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.803468813946996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.803468813946996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723121932552297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.723121932552297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.723121932552297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.723121932552297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.723121932552297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.723121932552297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.723121932552297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.723121932552297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.723121932552297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.723121932552297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723121932552297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.723121932552297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.723121932552297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.723121932552297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.723121932552297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.723121932552297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.723121932552297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.763295373249646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.763295373249646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.763295373249646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.763295373249646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.763295373249646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.763295373249646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.763295373249646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.763295373249646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.763295373249646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.763295373249646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.763295373249646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.763295373249646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.763295373249646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.763295373249646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.763295373249646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.763295373249646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.763295373249646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.783382093598321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.783382093598321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.783382093598321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.783382093598321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.783382093598321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.783382093598321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.783382093598321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.783382093598321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.783382093598321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.783382093598321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.783382093598321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.783382093598321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.783382093598321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.783382093598321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.783382093598321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.783382093598321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.783382093598321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.793425453772659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.793425453772659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.793425453772659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.793425453772659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.793425453772659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.793425453772659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.793425453772659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.793425453772659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.793425453772659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.793425453772659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.793425453772659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.793425453772659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.793425453772659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.793425453772659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.793425453772659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.793425453772659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.793425453772659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.803468813946996 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.803468813946996 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.803468813946996 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.803468813946996 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.803468813946996 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.803468813946996 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.803468813946996 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.803468813946996 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.803468813946996 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.803468813946996 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.803468813946996 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.803468813946996 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.803468813946996 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.803468813946996 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.803468813946996 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.803468813946996 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.803468813946996 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384070752321263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384070752321263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384070752321263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384070752321263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.345663677089137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.345663677089137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.345663677089137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.345663677089137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.345663677089137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.345663677089137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.345663677089137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.345663677089137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.345663677089137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.345663677089137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.345663677089137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.345663677089137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.345663677089137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.345663677089137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.345663677089137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.345663677089137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.345663677089137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3648672147052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.3648672147052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.3648672147052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.3648672147052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.3648672147052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.3648672147052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.3648672147052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.3648672147052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.3648672147052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3648672147052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.3648672147052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.3648672147052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.3648672147052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.3648672147052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.3648672147052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.3648672147052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.3648672147052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.374468983513231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.374468983513231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.374468983513231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.374468983513231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.374468983513231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.374468983513231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.374468983513231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.374468983513231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.374468983513231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.374468983513231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.374468983513231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.374468983513231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.374468983513231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.374468983513231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.374468983513231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.374468983513231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.374468983513231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379269867917247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.379269867917247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.379269867917247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.379269867917247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.379269867917247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.379269867917247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.379269867917247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.379269867917247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.379269867917247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379269867917247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.379269867917247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.379269867917247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.379269867917247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.379269867917247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.379269867917247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.379269867917247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.379269867917247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384070752321263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.384070752321263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.384070752321263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384070752321263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384070752321263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384070752321263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384070752321263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384070752321263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384070752321263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384070752321263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384070752321263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384070752321263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384070752321263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384070752321263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384070752321263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384070752321263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384070752321263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.416709284157144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.416709284157144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.416709284157144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.416709284157144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458380212572858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.458380212572858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.458380212572858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.458380212572858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.458380212572858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.458380212572858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458380212572858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458380212572858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458380212572858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458380212572858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458380212572858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458380212572858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458380212572858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458380212572858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458380212572858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458380212572858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458380212572858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.437544748365001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.437544748365001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.437544748365001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.437544748365001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.437544748365001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.437544748365001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.437544748365001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.437544748365001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.437544748365001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.437544748365001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.437544748365001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.437544748365001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.437544748365001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.437544748365001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.437544748365001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.437544748365001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.437544748365001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427127016261073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.427127016261073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.427127016261073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.427127016261073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.427127016261073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.427127016261073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.427127016261073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.427127016261073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.427127016261073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427127016261073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.427127016261073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.427127016261073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.427127016261073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.427127016261073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.427127016261073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.427127016261073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.427127016261073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421918150209108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.421918150209108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.421918150209108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.421918150209108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.421918150209108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.421918150209108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.421918150209108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.421918150209108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.421918150209108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421918150209108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.421918150209108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.421918150209108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.421918150209108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.421918150209108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.421918150209108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.421918150209108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.421918150209108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.416709284157144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.416709284157144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.416709284157144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.416709284157144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.416709284157144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.416709284157144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.416709284157144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.416709284157144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.416709284157144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.416709284157144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.416709284157144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.416709284157144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.416709284157144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.416709284157144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.416709284157144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.416709284157144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.416709284157144 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.110528018983401 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.110528018983401 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.110528018983401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.110528018983401 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0994752170850608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0994752170850608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0994752170850608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0994752170850608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0994752170850608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0994752170850608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0994752170850608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0994752170850608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0994752170850608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0994752170850608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0994752170850608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0994752170850608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0994752170850608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0994752170850608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0994752170850608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0994752170850608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0994752170850608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105001618034231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.105001618034231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.105001618034231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.105001618034231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.105001618034231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.105001618034231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.105001618034231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.105001618034231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.105001618034231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105001618034231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.105001618034231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.105001618034231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.105001618034231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.105001618034231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.105001618034231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.105001618034231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.105001618034231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107764818508816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107764818508816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107764818508816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107764818508816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107764818508816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107764818508816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107764818508816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107764818508816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107764818508816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107764818508816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107764818508816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107764818508816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.107764818508816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.107764818508816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.107764818508816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.107764818508816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.107764818508816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109146418746108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.109146418746108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.109146418746108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.109146418746108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.109146418746108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.109146418746108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.109146418746108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.109146418746108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.109146418746108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109146418746108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.109146418746108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.109146418746108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.109146418746108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.109146418746108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.109146418746108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.109146418746108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.109146418746108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110528018983401 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.110528018983401 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.110528018983401 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.110528018983401 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.110528018983401 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.110528018983401 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.110528018983401 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.110528018983401 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.110528018983401 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110528018983401 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.110528018983401 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.110528018983401 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.110528018983401 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.110528018983401 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.110528018983401 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.110528018983401 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.110528018983401 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.381081932843736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.381081932843736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.381081932843736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.381081932843736 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.41919012612811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.41919012612811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.41919012612811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.41919012612811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.41919012612811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.41919012612811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.41919012612811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.41919012612811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.41919012612811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.41919012612811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.41919012612811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.41919012612811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.41919012612811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.41919012612811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.41919012612811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.41919012612811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.41919012612811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.400136029485923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.400136029485923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.400136029485923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.400136029485923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.400136029485923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.400136029485923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.400136029485923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.400136029485923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.400136029485923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.400136029485923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.400136029485923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.400136029485923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.400136029485923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.400136029485923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.400136029485923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.400136029485923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.400136029485923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390608981164829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.390608981164829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390608981164829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390608981164829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390608981164829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390608981164829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390608981164829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390608981164829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390608981164829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390608981164829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390608981164829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390608981164829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390608981164829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390608981164829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390608981164829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390608981164829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390608981164829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385845457004283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.385845457004283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.385845457004283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.385845457004283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.385845457004283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.385845457004283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.385845457004283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.385845457004283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.385845457004283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385845457004283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.385845457004283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.385845457004283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.385845457004283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.385845457004283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.385845457004283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.385845457004283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.385845457004283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381081932843736 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.381081932843736 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.381081932843736 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.381081932843736 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.381081932843736 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.381081932843736 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.381081932843736 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.381081932843736 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.381081932843736 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381081932843736 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.381081932843736 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.381081932843736 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.381081932843736 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.381081932843736 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.381081932843736 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.381081932843736 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.381081932843736 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390964989147038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390964989147038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390964989147038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390964989147038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.430061488061742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.430061488061742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.430061488061742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.430061488061742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.430061488061742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.430061488061742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.430061488061742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.430061488061742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.430061488061742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.430061488061742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.430061488061742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.430061488061742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.430061488061742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.430061488061742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.430061488061742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.430061488061742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.430061488061742 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.41051323860439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.41051323860439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.41051323860439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.41051323860439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.41051323860439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.41051323860439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.41051323860439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.41051323860439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.41051323860439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.41051323860439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.41051323860439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.41051323860439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.41051323860439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.41051323860439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.41051323860439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.41051323860439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.41051323860439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.400739113875714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.400739113875714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.400739113875714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.400739113875714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.400739113875714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.400739113875714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.400739113875714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.400739113875714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.400739113875714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.400739113875714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.400739113875714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.400739113875714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.400739113875714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.400739113875714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.400739113875714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.400739113875714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.400739113875714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.395852051511376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.395852051511376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.395852051511376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.395852051511376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.395852051511376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.395852051511376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.395852051511376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.395852051511376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.395852051511376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.395852051511376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.395852051511376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.395852051511376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.395852051511376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.395852051511376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.395852051511376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.395852051511376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.395852051511376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390964989147038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.390964989147038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390964989147038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390964989147038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390964989147038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390964989147038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390964989147038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390964989147038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390964989147038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390964989147038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390964989147038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390964989147038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390964989147038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390964989147038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390964989147038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390964989147038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390964989147038 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.499317911433204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.499317911433204 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.499317911433204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.499317911433204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.549249702576524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.549249702576524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.549249702576524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.549249702576524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.549249702576524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.549249702576524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.549249702576524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.549249702576524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.549249702576524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.549249702576524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.549249702576524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.549249702576524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.549249702576524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.549249702576524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.549249702576524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.549249702576524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.549249702576524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.524283807004864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.524283807004864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.524283807004864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.524283807004864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.524283807004864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.524283807004864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.524283807004864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.524283807004864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.524283807004864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.524283807004864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.524283807004864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.524283807004864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.524283807004864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.524283807004864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.524283807004864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.524283807004864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.524283807004864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.511800859219034 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.511800859219034 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.511800859219034 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.511800859219034 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.511800859219034 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.511800859219034 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.511800859219034 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.511800859219034 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.511800859219034 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.511800859219034 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.511800859219034 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.511800859219034 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.511800859219034 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.511800859219034 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.511800859219034 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.511800859219034 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.511800859219034 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.505559385326119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.505559385326119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.505559385326119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.505559385326119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.505559385326119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.505559385326119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.505559385326119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.505559385326119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.505559385326119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.505559385326119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.505559385326119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.505559385326119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.505559385326119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.505559385326119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.505559385326119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.505559385326119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.505559385326119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499317911433204 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.499317911433204 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.499317911433204 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.499317911433204 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.499317911433204 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.499317911433204 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.499317911433204 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.499317911433204 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.499317911433204 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499317911433204 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.499317911433204 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.499317911433204 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.499317911433204 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.499317911433204 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.499317911433204 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.499317911433204 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.499317911433204 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.138763521992511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.138763521992511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.138763521992511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.138763521992511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152639874191762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.152639874191762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.152639874191762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.152639874191762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.152639874191762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.152639874191762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.152639874191762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.152639874191762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.152639874191762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152639874191762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.152639874191762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.152639874191762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.152639874191762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.152639874191762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.152639874191762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.152639874191762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.152639874191762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145701698092136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.145701698092136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145701698092136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145701698092136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145701698092136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145701698092136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145701698092136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145701698092136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145701698092136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145701698092136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145701698092136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145701698092136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145701698092136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145701698092136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145701698092136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145701698092136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145701698092136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142232610042324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.142232610042324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.142232610042324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.142232610042324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.142232610042324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.142232610042324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.142232610042324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.142232610042324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.142232610042324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142232610042324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.142232610042324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.142232610042324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.142232610042324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.142232610042324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.142232610042324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.142232610042324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.142232610042324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.140498066017417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.140498066017417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.140498066017417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.140498066017417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.140498066017417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.140498066017417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.140498066017417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.140498066017417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.140498066017417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.140498066017417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.140498066017417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.140498066017417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.140498066017417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.140498066017417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.140498066017417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.140498066017417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.140498066017417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138763521992511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.138763521992511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.138763521992511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.138763521992511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.138763521992511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.138763521992511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.138763521992511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.138763521992511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.138763521992511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.138763521992511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.138763521992511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.138763521992511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.138763521992511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.138763521992511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.138763521992511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.138763521992511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.138763521992511 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0348534231431333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0348534231431333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0348534231431333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0348534231431333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0383387654574466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0383387654574466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0383387654574466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0383387654574466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0383387654574466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0383387654574466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0383387654574466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0383387654574466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0383387654574466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0383387654574466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0383387654574466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0383387654574466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0383387654574466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0383387654574466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0383387654574466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0383387654574466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0383387654574466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0365960943002899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0365960943002899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0365960943002899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0365960943002899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0365960943002899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0365960943002899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0365960943002899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0365960943002899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0365960943002899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0365960943002899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0365960943002899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0365960943002899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0365960943002899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0365960943002899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0365960943002899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0365960943002899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0365960943002899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0357247587217116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0357247587217116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0357247587217116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0357247587217116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0357247587217116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0357247587217116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0357247587217116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0357247587217116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0357247587217116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0357247587217116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0357247587217116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0357247587217116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0357247587217116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0357247587217116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0357247587217116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0357247587217116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0357247587217116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0352890909324224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0352890909324224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0352890909324224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0352890909324224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0352890909324224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0352890909324224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0352890909324224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0352890909324224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0352890909324224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0352890909324224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0352890909324224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0352890909324224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0352890909324224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0352890909324224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0352890909324224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0352890909324224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0352890909324224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0348534231431333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0348534231431333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0348534231431333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0348534231431333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0348534231431333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0348534231431333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0348534231431333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0348534231431333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0348534231431333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0348534231431333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0348534231431333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0348534231431333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0348534231431333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0348534231431333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0348534231431333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0348534231431333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0348534231431333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.301326265053784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.301326265053784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.301326265053784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.301326265053784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.271193638548405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.271193638548405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.271193638548405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.271193638548405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.271193638548405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.271193638548405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.271193638548405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.271193638548405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.271193638548405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.271193638548405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.271193638548405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.271193638548405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.271193638548405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.271193638548405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.271193638548405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.271193638548405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.271193638548405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286259951801094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.286259951801094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.286259951801094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.286259951801094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.286259951801094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.286259951801094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.286259951801094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286259951801094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286259951801094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286259951801094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286259951801094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286259951801094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286259951801094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286259951801094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286259951801094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286259951801094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286259951801094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293793108427439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.293793108427439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.293793108427439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.293793108427439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.293793108427439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.293793108427439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.293793108427439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293793108427439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293793108427439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293793108427439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.293793108427439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.293793108427439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.293793108427439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.293793108427439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.293793108427439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.293793108427439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.293793108427439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297559686740611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297559686740611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297559686740611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297559686740611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297559686740611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297559686740611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297559686740611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297559686740611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297559686740611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297559686740611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297559686740611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297559686740611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297559686740611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297559686740611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297559686740611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297559686740611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297559686740611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301326265053784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.301326265053784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.301326265053784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301326265053784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301326265053784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301326265053784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301326265053784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301326265053784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301326265053784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301326265053784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301326265053784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301326265053784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301326265053784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301326265053784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301326265053784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301326265053784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.301326265053784 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.276327101436864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.276327101436864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.276327101436864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.276327101436864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30395981158055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30395981158055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30395981158055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30395981158055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30395981158055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30395981158055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30395981158055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30395981158055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30395981158055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30395981158055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30395981158055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30395981158055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30395981158055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.30395981158055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.30395981158055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.30395981158055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.30395981158055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.290143456508707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.290143456508707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.290143456508707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.290143456508707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.290143456508707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.290143456508707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.290143456508707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.290143456508707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.290143456508707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.290143456508707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.290143456508707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.290143456508707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.290143456508707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.290143456508707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.290143456508707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.290143456508707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.290143456508707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.283235278972786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.283235278972786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.283235278972786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.283235278972786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.283235278972786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.283235278972786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.283235278972786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.283235278972786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.283235278972786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.283235278972786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.283235278972786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.283235278972786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.283235278972786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.283235278972786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.283235278972786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.283235278972786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.283235278972786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.279781190204825 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.279781190204825 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.279781190204825 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.279781190204825 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.279781190204825 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.279781190204825 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.279781190204825 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.279781190204825 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.279781190204825 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.279781190204825 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.279781190204825 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.279781190204825 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.279781190204825 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.279781190204825 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.279781190204825 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.279781190204825 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.279781190204825 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276327101436864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.276327101436864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.276327101436864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.276327101436864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.276327101436864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.276327101436864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.276327101436864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.276327101436864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.276327101436864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276327101436864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.276327101436864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.276327101436864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.276327101436864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.276327101436864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.276327101436864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.276327101436864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.276327101436864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0599975710683456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0599975710683456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0599975710683456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0599975710683456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0659973281751801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0659973281751801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0659973281751801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0659973281751801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0659973281751801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0659973281751801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0659973281751801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0659973281751801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0659973281751801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0659973281751801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0659973281751801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0659973281751801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0659973281751801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0659973281751801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0659973281751801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0659973281751801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0659973281751801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0629974496217629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0629974496217629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0629974496217629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0629974496217629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0629974496217629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0629974496217629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0629974496217629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0629974496217629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0629974496217629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0629974496217629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0629974496217629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0629974496217629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0629974496217629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0629974496217629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0629974496217629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0629974496217629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0629974496217629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0614975103450542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0614975103450542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0614975103450542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0614975103450542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0614975103450542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0614975103450542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0614975103450542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0614975103450542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0614975103450542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0614975103450542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0614975103450542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0614975103450542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0614975103450542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0614975103450542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0614975103450542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0614975103450542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0614975103450542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0607475407066999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0607475407066999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0607475407066999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0607475407066999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0607475407066999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0607475407066999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0607475407066999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0607475407066999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0607475407066999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0607475407066999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0607475407066999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0607475407066999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0607475407066999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0607475407066999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0607475407066999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0607475407066999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0607475407066999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599975710683456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0599975710683456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0599975710683456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0599975710683456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0599975710683456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0599975710683456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0599975710683456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0599975710683456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0599975710683456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599975710683456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0599975710683456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0599975710683456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0599975710683456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0599975710683456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0599975710683456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0599975710683456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0599975710683456 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.649059702227365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.649059702227365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.649059702227365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.649059702227365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.713965672450101 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.713965672450101 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.713965672450101 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.713965672450101 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.713965672450101 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.713965672450101 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.713965672450101 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.713965672450101 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.713965672450101 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.713965672450101 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.713965672450101 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.713965672450101 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.713965672450101 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.713965672450101 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.713965672450101 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.713965672450101 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.713965672450101 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.713965672450101 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.681512687338733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.681512687338733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.681512687338733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.681512687338733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.681512687338733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.681512687338733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.681512687338733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.681512687338733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.681512687338733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.681512687338733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.681512687338733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.681512687338733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.681512687338733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.681512687338733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.681512687338733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.681512687338733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.681512687338733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.681512687338733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.665286194783049 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.665286194783049 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.665286194783049 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.665286194783049 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.665286194783049 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.665286194783049 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.665286194783049 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.665286194783049 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.665286194783049 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.665286194783049 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.665286194783049 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.665286194783049 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.665286194783049 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.665286194783049 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.665286194783049 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.665286194783049 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.665286194783049 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.665286194783049 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.657172948505207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.657172948505207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.657172948505207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.657172948505207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.657172948505207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.657172948505207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.657172948505207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.657172948505207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.657172948505207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.657172948505207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.657172948505207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.657172948505207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.657172948505207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.657172948505207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.657172948505207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.657172948505207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.657172948505207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.657172948505207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.649059702227365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.649059702227365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.649059702227365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.649059702227365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.649059702227365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.649059702227365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.649059702227365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.649059702227365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.649059702227365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.649059702227365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.649059702227365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.649059702227365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.649059702227365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.649059702227365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.649059702227365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.649059702227365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.20850805043874 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.20850805043874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.20850805043874 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.20850805043874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32935885548262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32935885548262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32935885548262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32935885548262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32935885548262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32935885548262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32935885548262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32935885548262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32935885548262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32935885548262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32935885548262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32935885548262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32935885548262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32935885548262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32935885548262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32935885548262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32935885548262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32935885548262 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.26893345296068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.26893345296068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.26893345296068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.26893345296068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.26893345296068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.26893345296068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.26893345296068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.26893345296068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.26893345296068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.26893345296068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.26893345296068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.26893345296068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.26893345296068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.26893345296068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.26893345296068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.26893345296068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.26893345296068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.26893345296068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.23872075169971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.23872075169971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.23872075169971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.23872075169971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.23872075169971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.23872075169971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.23872075169971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.23872075169971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.23872075169971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.23872075169971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.23872075169971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.23872075169971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.23872075169971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.23872075169971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.23872075169971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.23872075169971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.23872075169971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.23872075169971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22361440106923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22361440106923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.22361440106923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.22361440106923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.22361440106923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.22361440106923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.22361440106923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.22361440106923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.22361440106923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22361440106923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.22361440106923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.22361440106923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.22361440106923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.22361440106923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.22361440106923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.22361440106923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.22361440106923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.22361440106923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20850805043874 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20850805043874 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20850805043874 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20850805043874 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20850805043874 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20850805043874 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20850805043874 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20850805043874 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20850805043874 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20850805043874 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20850805043874 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20850805043874 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.20850805043874 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.20850805043874 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.20850805043874 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.20850805043874 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.223804685179435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.223804685179435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.223804685179435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.223804685179435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201424216661492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.201424216661492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.201424216661492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.201424216661492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.201424216661492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.201424216661492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.201424216661492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.201424216661492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.201424216661492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201424216661492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.201424216661492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.201424216661492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.201424216661492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.201424216661492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.201424216661492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.201424216661492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.201424216661492 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212614450920463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.212614450920463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212614450920463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.212614450920463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.212614450920463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212614450920463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212614450920463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212614450920463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212614450920463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212614450920463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212614450920463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212614450920463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212614450920463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.212614450920463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.212614450920463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.212614450920463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.212614450920463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.218209568049949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.218209568049949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.218209568049949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.218209568049949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.218209568049949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.218209568049949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.218209568049949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.218209568049949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.218209568049949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.218209568049949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.218209568049949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.218209568049949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.218209568049949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.218209568049949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.218209568049949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.218209568049949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.218209568049949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221007126614692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.221007126614692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.221007126614692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.221007126614692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.221007126614692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.221007126614692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221007126614692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221007126614692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221007126614692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221007126614692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221007126614692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221007126614692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221007126614692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221007126614692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221007126614692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221007126614692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221007126614692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223804685179435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.223804685179435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.223804685179435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.223804685179435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.223804685179435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.223804685179435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.223804685179435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.223804685179435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.223804685179435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223804685179435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.223804685179435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.223804685179435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.223804685179435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.223804685179435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.223804685179435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.223804685179435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.223804685179435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.325560892610092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.325560892610092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.325560892610092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.325560892610092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293004803349083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.293004803349083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.293004803349083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.293004803349083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.293004803349083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.293004803349083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.293004803349083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293004803349083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293004803349083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293004803349083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.293004803349083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.293004803349083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.293004803349083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.293004803349083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.293004803349083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.293004803349083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.293004803349083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309282847979587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.309282847979587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.309282847979587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.309282847979587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.309282847979587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.309282847979587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.309282847979587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.309282847979587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.309282847979587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309282847979587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.309282847979587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.309282847979587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.309282847979587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.309282847979587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.309282847979587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.309282847979587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.309282847979587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317421870294839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.317421870294839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.317421870294839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.317421870294839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.317421870294839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.317421870294839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.317421870294839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.317421870294839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.317421870294839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317421870294839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.317421870294839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.317421870294839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.317421870294839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.317421870294839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.317421870294839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.317421870294839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.317421870294839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321491381452466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.321491381452466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.321491381452466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.321491381452466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.321491381452466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.321491381452466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321491381452466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321491381452466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321491381452466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321491381452466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321491381452466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321491381452466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321491381452466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321491381452466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.321491381452466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.321491381452466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.321491381452466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325560892610092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.325560892610092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.325560892610092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.325560892610092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.325560892610092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.325560892610092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.325560892610092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.325560892610092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.325560892610092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325560892610092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.325560892610092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.325560892610092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.325560892610092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.325560892610092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.325560892610092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.325560892610092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.325560892610092 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.323917735112268 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.323917735112268 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.323917735112268 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.356309508623495 -8.81091087691857e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.340113621867881 -3.74485037008071e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.332015678490075 -1.21182011666178e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.323917735112268 -8.67892198425653e-05"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0833926933277633 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0833926933277633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0833926933277633 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0833926933277633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0917319626605397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0875623279941515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0854775106609574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0844351019943604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0833926933277633 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.293852436541971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.293852436541971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.293852436541971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.293852436541971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.264467192887774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.279159814714873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286506125628422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.290179281085197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.293852436541971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.247881564562604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.247881564562604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.247881564562604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.247881564562604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.223093408106343 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.235487486334474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.241684525448539 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.244783045005571 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.247881564562604 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.247881564562604 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0867142962914822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0867142962914822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0867142962914822 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0867142962914822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0953857259206304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0953857259206304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0953857259206304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0953857259206304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0953857259206304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0953857259206304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0953857259206304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0953857259206304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0953857259206304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0953857259206304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0953857259206304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0953857259206304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0953857259206304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0953857259206304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0953857259206304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0953857259206304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0953857259206304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0910500111060563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0910500111060563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0910500111060563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0910500111060563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0910500111060563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0910500111060563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0910500111060563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0910500111060563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0910500111060563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0910500111060563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0910500111060563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0910500111060563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0910500111060563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0910500111060563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0910500111060563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0910500111060563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0910500111060563 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0888821536987693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0888821536987693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0888821536987693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0888821536987693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0888821536987693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0888821536987693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0888821536987693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0888821536987693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0888821536987693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0888821536987693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0888821536987693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0888821536987693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0888821536987693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0888821536987693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0888821536987693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0888821536987693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0888821536987693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0877982249951257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0877982249951257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0877982249951257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0877982249951257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0877982249951257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0877982249951257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0877982249951257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0877982249951257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0877982249951257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0877982249951257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0877982249951257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0877982249951257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0877982249951257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0877982249951257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0877982249951257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0877982249951257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0877982249951257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0867142962914822 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0867142962914822 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0867142962914822 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0867142962914822 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0867142962914822 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0867142962914822 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0867142962914822 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0867142962914822 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0867142962914822 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0867142962914822 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0867142962914822 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0867142962914822 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0867142962914822 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0867142962914822 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0867142962914822 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0867142962914822 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0867142962914822 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0806143019101659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0806143019101659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0806143019101659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0806143019101659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0886757321011825 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0886757321011825 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0886757321011825 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0886757321011825 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0886757321011825 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0886757321011825 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0886757321011825 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0886757321011825 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0886757321011825 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0886757321011825 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0886757321011825 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0886757321011825 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0886757321011825 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0886757321011825 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0886757321011825 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0886757321011825 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0886757321011825 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0846450170056742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0846450170056742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0846450170056742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0846450170056742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0846450170056742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0846450170056742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0846450170056742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0846450170056742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0846450170056742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0846450170056742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0846450170056742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0846450170056742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0846450170056742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0846450170056742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0846450170056742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0846450170056742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0846450170056742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0826296594579201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0826296594579201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0826296594579201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0826296594579201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0826296594579201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0826296594579201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0826296594579201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0826296594579201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0826296594579201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0826296594579201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0826296594579201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0826296594579201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0826296594579201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0826296594579201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0826296594579201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0826296594579201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0826296594579201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.081621980684043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.081621980684043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.081621980684043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.081621980684043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.081621980684043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.081621980684043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.081621980684043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.081621980684043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.081621980684043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.081621980684043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.081621980684043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.081621980684043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.081621980684043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.081621980684043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.081621980684043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.081621980684043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.081621980684043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0806143019101659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0806143019101659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0806143019101659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0806143019101659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0806143019101659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0806143019101659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0806143019101659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0806143019101659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0806143019101659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0806143019101659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0806143019101659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0806143019101659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0806143019101659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0806143019101659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0806143019101659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0806143019101659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0806143019101659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0796364103821541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0796364103821541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0796364103821541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0796364103821541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0876000514203695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0876000514203695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0876000514203695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0876000514203695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0876000514203695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0876000514203695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0876000514203695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0876000514203695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0876000514203695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0876000514203695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0876000514203695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0876000514203695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0876000514203695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0876000514203695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0876000514203695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0876000514203695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0876000514203695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0836182309012618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0836182309012618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0836182309012618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0836182309012618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0836182309012618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0836182309012618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0836182309012618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0836182309012618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0836182309012618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0836182309012618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0836182309012618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0836182309012618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0836182309012618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0836182309012618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0836182309012618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0836182309012618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0836182309012618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0816273206417079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0816273206417079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0816273206417079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0816273206417079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0816273206417079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0816273206417079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0816273206417079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0816273206417079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0816273206417079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0816273206417079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0816273206417079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0816273206417079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0816273206417079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0816273206417079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0816273206417079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0816273206417079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0816273206417079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.080631865511931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.080631865511931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.080631865511931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.080631865511931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.080631865511931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.080631865511931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.080631865511931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.080631865511931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.080631865511931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.080631865511931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.080631865511931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.080631865511931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.080631865511931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.080631865511931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.080631865511931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.080631865511931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.080631865511931 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0796364103821541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0796364103821541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0796364103821541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0796364103821541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0796364103821541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0796364103821541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0796364103821541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0796364103821541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0796364103821541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0796364103821541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0796364103821541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0796364103821541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0796364103821541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0796364103821541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0796364103821541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0796364103821541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0796364103821541 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.362943153785166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.362943153785166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.362943153785166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.362943153785166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.399237469163682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.399237469163682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.399237469163682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.399237469163682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.399237469163682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.399237469163682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.399237469163682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.399237469163682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.399237469163682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.399237469163682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.399237469163682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.399237469163682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.399237469163682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.399237469163682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.399237469163682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.399237469163682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.399237469163682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381090311474424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.381090311474424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.381090311474424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.381090311474424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.381090311474424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.381090311474424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.381090311474424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.381090311474424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.381090311474424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381090311474424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.381090311474424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.381090311474424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.381090311474424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.381090311474424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.381090311474424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.381090311474424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.381090311474424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372016732629795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.372016732629795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.372016732629795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.372016732629795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.372016732629795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372016732629795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372016732629795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372016732629795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372016732629795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372016732629795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372016732629795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372016732629795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372016732629795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372016732629795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372016732629795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372016732629795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372016732629795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36747994320748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.36747994320748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.36747994320748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.36747994320748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.36747994320748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.36747994320748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36747994320748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36747994320748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36747994320748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36747994320748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36747994320748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36747994320748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36747994320748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36747994320748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36747994320748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36747994320748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.36747994320748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362943153785166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.362943153785166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.362943153785166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.362943153785166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.362943153785166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.362943153785166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.362943153785166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.362943153785166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.362943153785166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362943153785166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.362943153785166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.362943153785166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.362943153785166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.362943153785166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.362943153785166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.362943153785166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.362943153785166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.314350844388499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.314350844388499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.314350844388499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.314350844388499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345785928827349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345785928827349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345785928827349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345785928827349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345785928827349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345785928827349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345785928827349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345785928827349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345785928827349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345785928827349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345785928827349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345785928827349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345785928827349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345785928827349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345785928827349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345785928827349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345785928827349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330068386607924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.330068386607924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.330068386607924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.330068386607924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.330068386607924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.330068386607924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.330068386607924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.330068386607924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.330068386607924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330068386607924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.330068386607924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.330068386607924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.330068386607924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.330068386607924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.330068386607924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.330068386607924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.330068386607924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322209615498211 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.322209615498211 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.322209615498211 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.322209615498211 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.322209615498211 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322209615498211 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322209615498211 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322209615498211 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322209615498211 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322209615498211 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322209615498211 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322209615498211 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322209615498211 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322209615498211 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322209615498211 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322209615498211 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322209615498211 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.318280229943355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.318280229943355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.318280229943355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.318280229943355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.318280229943355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.318280229943355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.318280229943355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.318280229943355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.318280229943355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.318280229943355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.318280229943355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.318280229943355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.318280229943355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.318280229943355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.318280229943355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.318280229943355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.318280229943355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.314350844388499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.314350844388499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.314350844388499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.314350844388499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.314350844388499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.314350844388499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.314350844388499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.314350844388499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.314350844388499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.314350844388499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.314350844388499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.314350844388499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.314350844388499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.314350844388499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.314350844388499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.314350844388499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.314350844388499 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.214135581947713 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.214135581947713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.214135581947713 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.214135581947713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.235549140142484 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.235549140142484 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.235549140142484 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.235549140142484 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.235549140142484 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.235549140142484 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.235549140142484 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.235549140142484 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.235549140142484 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.235549140142484 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.235549140142484 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.235549140142484 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.235549140142484 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.235549140142484 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.235549140142484 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.235549140142484 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.235549140142484 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224842361045099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.224842361045099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.224842361045099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.224842361045099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.224842361045099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.224842361045099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.224842361045099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.224842361045099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.224842361045099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224842361045099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.224842361045099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.224842361045099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.224842361045099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.224842361045099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.224842361045099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.224842361045099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.224842361045099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.219488971496406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.219488971496406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.219488971496406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.219488971496406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.219488971496406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.219488971496406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.219488971496406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.219488971496406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.219488971496406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.219488971496406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.219488971496406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.219488971496406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.219488971496406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.219488971496406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.219488971496406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.219488971496406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.219488971496406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.216812276722059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.216812276722059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.216812276722059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.216812276722059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.216812276722059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.216812276722059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.216812276722059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.216812276722059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.216812276722059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.216812276722059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.216812276722059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.216812276722059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.216812276722059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.216812276722059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.216812276722059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.216812276722059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.216812276722059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214135581947713 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.214135581947713 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.214135581947713 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.214135581947713 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.214135581947713 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.214135581947713 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.214135581947713 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.214135581947713 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.214135581947713 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214135581947713 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.214135581947713 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.214135581947713 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.214135581947713 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.214135581947713 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.214135581947713 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.214135581947713 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.214135581947713 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0460983955259622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0460983955259622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0460983955259622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0460983955259622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.041488555973366 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.041488555973366 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.041488555973366 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.041488555973366 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.041488555973366 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.041488555973366 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.041488555973366 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.041488555973366 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.041488555973366 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.041488555973366 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.041488555973366 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.041488555973366 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.041488555973366 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.041488555973366 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.041488555973366 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.041488555973366 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.041488555973366 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0437934757496641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0437934757496641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0437934757496641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0437934757496641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0437934757496641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0437934757496641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0437934757496641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0437934757496641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0437934757496641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0437934757496641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0437934757496641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0437934757496641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0437934757496641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0437934757496641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0437934757496641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0437934757496641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0437934757496641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0449459356378132 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0449459356378132 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0449459356378132 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0449459356378132 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0449459356378132 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0449459356378132 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0449459356378132 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0449459356378132 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0449459356378132 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0449459356378132 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0449459356378132 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0449459356378132 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0449459356378132 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0449459356378132 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0449459356378132 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0449459356378132 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0449459356378132 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0455221655818877 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0455221655818877 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0455221655818877 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0455221655818877 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0455221655818877 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0455221655818877 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0455221655818877 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0455221655818877 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0455221655818877 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0455221655818877 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0455221655818877 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0455221655818877 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0455221655818877 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0455221655818877 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0455221655818877 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0455221655818877 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0455221655818877 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0460983955259622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0460983955259622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0460983955259622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0460983955259622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0460983955259622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0460983955259622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0460983955259622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0460983955259622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0460983955259622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0460983955259622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0460983955259622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0460983955259622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0460983955259622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0460983955259622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0460983955259622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0460983955259622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0460983955259622 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.063602148488998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.063602148488998 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.063602148488998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.063602148488998 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0572419336400982 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0572419336400982 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0572419336400982 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0572419336400982 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0572419336400982 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0572419336400982 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0572419336400982 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0572419336400982 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0572419336400982 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0572419336400982 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0572419336400982 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0572419336400982 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0572419336400982 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0572419336400982 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0572419336400982 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0572419336400982 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0572419336400982 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0604220410645481 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0604220410645481 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0604220410645481 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0604220410645481 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0604220410645481 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0604220410645481 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0604220410645481 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0604220410645481 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0604220410645481 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0604220410645481 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0604220410645481 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0604220410645481 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0604220410645481 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0604220410645481 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0604220410645481 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0604220410645481 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0604220410645481 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0620120947767731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0620120947767731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0620120947767731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0620120947767731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0620120947767731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0620120947767731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0620120947767731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0620120947767731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0620120947767731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0620120947767731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0620120947767731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0620120947767731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0620120947767731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0620120947767731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0620120947767731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0620120947767731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0620120947767731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628071216328856 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0628071216328856 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0628071216328856 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0628071216328856 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0628071216328856 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0628071216328856 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0628071216328856 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0628071216328856 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0628071216328856 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628071216328856 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0628071216328856 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0628071216328856 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0628071216328856 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0628071216328856 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0628071216328856 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0628071216328856 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0628071216328856 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.063602148488998 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.063602148488998 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.063602148488998 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.063602148488998 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.063602148488998 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.063602148488998 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.063602148488998 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.063602148488998 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.063602148488998 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.063602148488998 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.063602148488998 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.063602148488998 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.063602148488998 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.063602148488998 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.063602148488998 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.063602148488998 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.063602148488998 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179935121236306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179935121236306 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179935121236306 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179935121236306 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197928633359937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.197928633359937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.197928633359937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.197928633359937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.197928633359937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.197928633359937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.197928633359937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.197928633359937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.197928633359937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197928633359937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.197928633359937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.197928633359937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.197928633359937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.197928633359937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.197928633359937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.197928633359937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.197928633359937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188931877298121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.188931877298121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.188931877298121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.188931877298121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.188931877298121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.188931877298121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.188931877298121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.188931877298121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.188931877298121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188931877298121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.188931877298121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.188931877298121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.188931877298121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.188931877298121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.188931877298121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.188931877298121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.188931877298121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.184433499267214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.184433499267214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.184433499267214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.184433499267214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.184433499267214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.184433499267214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.184433499267214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.184433499267214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.184433499267214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.184433499267214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.184433499267214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.184433499267214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.184433499267214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.184433499267214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.184433499267214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.184433499267214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.184433499267214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.18218431025176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.18218431025176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.18218431025176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.18218431025176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.18218431025176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.18218431025176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.18218431025176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.18218431025176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.18218431025176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.18218431025176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.18218431025176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.18218431025176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.18218431025176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.18218431025176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.18218431025176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.18218431025176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.18218431025176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179935121236306 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.179935121236306 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.179935121236306 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.179935121236306 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.179935121236306 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.179935121236306 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.179935121236306 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.179935121236306 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.179935121236306 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.179935121236306 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.179935121236306 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.179935121236306 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.179935121236306 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.179935121236306 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.179935121236306 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.179935121236306 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.179935121236306 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199318590074163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199318590074163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199318590074163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199318590074163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179386731066747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.179386731066747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.179386731066747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.179386731066747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.179386731066747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.179386731066747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.179386731066747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.179386731066747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.179386731066747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179386731066747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.179386731066747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.179386731066747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.179386731066747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.179386731066747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.179386731066747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.179386731066747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.179386731066747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.189352660570455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.189352660570455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.189352660570455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.189352660570455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.189352660570455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.189352660570455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.189352660570455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.189352660570455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.189352660570455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.189352660570455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.189352660570455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.189352660570455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.189352660570455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.189352660570455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.189352660570455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.189352660570455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.189352660570455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194335625322309 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.194335625322309 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.194335625322309 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.194335625322309 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.194335625322309 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.194335625322309 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.194335625322309 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.194335625322309 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.194335625322309 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194335625322309 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.194335625322309 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.194335625322309 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.194335625322309 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.194335625322309 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.194335625322309 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.194335625322309 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.194335625322309 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.196827107698236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.196827107698236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.196827107698236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.196827107698236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.196827107698236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.196827107698236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.196827107698236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.196827107698236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.196827107698236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.196827107698236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.196827107698236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.196827107698236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.196827107698236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.196827107698236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.196827107698236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.196827107698236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.196827107698236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199318590074163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.199318590074163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.199318590074163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199318590074163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199318590074163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199318590074163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199318590074163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199318590074163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199318590074163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199318590074163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199318590074163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199318590074163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199318590074163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199318590074163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199318590074163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199318590074163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199318590074163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.299557805911685 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.299557805911685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.299557805911685 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.299557805911685 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329513586502854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.329513586502854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.329513586502854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.329513586502854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.329513586502854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.329513586502854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329513586502854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329513586502854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329513586502854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329513586502854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329513586502854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329513586502854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329513586502854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329513586502854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329513586502854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329513586502854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329513586502854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31453569620727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.31453569620727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.31453569620727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.31453569620727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.31453569620727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.31453569620727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31453569620727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31453569620727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31453569620727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31453569620727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31453569620727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31453569620727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31453569620727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31453569620727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31453569620727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31453569620727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31453569620727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.307046751059478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.307046751059478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.307046751059478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.307046751059478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.307046751059478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.307046751059478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.307046751059478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.307046751059478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.307046751059478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.307046751059478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.307046751059478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.307046751059478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.307046751059478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.307046751059478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.307046751059478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.307046751059478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.307046751059478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.303302278485582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.303302278485582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.303302278485582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.303302278485582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.303302278485582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.303302278485582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.303302278485582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.303302278485582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.303302278485582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.303302278485582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.303302278485582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.303302278485582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.303302278485582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.303302278485582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.303302278485582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.303302278485582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.303302278485582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299557805911685 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.299557805911685 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.299557805911685 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.299557805911685 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.299557805911685 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.299557805911685 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.299557805911685 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.299557805911685 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.299557805911685 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299557805911685 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.299557805911685 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.299557805911685 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.299557805911685 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.299557805911685 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.299557805911685 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.299557805911685 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.299557805911685 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0525349123211267 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0525349123211267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0525349123211267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0525349123211267 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577884035532394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0577884035532394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0577884035532394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577884035532394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577884035532394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577884035532394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577884035532394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577884035532394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577884035532394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577884035532394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577884035532394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577884035532394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577884035532394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577884035532394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577884035532394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577884035532394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577884035532394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0551616579371831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0551616579371831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0551616579371831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0551616579371831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0551616579371831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0551616579371831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0551616579371831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0551616579371831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0551616579371831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0551616579371831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0551616579371831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0551616579371831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0551616579371831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0551616579371831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0551616579371831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0551616579371831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0551616579371831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0538482851291549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0538482851291549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0538482851291549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0538482851291549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0538482851291549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0538482851291549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0538482851291549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0538482851291549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0538482851291549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0538482851291549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0538482851291549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0538482851291549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0538482851291549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0538482851291549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0538482851291549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0538482851291549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0538482851291549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0531915987251408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0531915987251408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0531915987251408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0531915987251408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0531915987251408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0531915987251408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0531915987251408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0531915987251408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0531915987251408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0531915987251408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0531915987251408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0531915987251408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0531915987251408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0531915987251408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0531915987251408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0531915987251408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0531915987251408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0525349123211267 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0525349123211267 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0525349123211267 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0525349123211267 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0525349123211267 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0525349123211267 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0525349123211267 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0525349123211267 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0525349123211267 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0525349123211267 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0525349123211267 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0525349123211267 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0525349123211267 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0525349123211267 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0525349123211267 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0525349123211267 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0525349123211267 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.162465997964815 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.162465997964815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.162465997964815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.162465997964815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.178712597761297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.178712597761297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.178712597761297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.178712597761297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.178712597761297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.178712597761297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.178712597761297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.178712597761297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.178712597761297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.178712597761297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.178712597761297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.178712597761297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.178712597761297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.178712597761297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.178712597761297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.178712597761297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.178712597761297 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170589297863056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.170589297863056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.170589297863056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.170589297863056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.170589297863056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170589297863056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170589297863056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170589297863056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170589297863056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170589297863056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170589297863056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170589297863056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170589297863056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170589297863056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170589297863056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170589297863056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170589297863056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.166527647913936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.166527647913936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.166527647913936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.166527647913936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.166527647913936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.166527647913936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.166527647913936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.166527647913936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.166527647913936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.166527647913936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.166527647913936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.166527647913936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.166527647913936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.166527647913936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.166527647913936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.166527647913936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.166527647913936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164496822939376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.164496822939376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.164496822939376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.164496822939376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.164496822939376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.164496822939376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.164496822939376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.164496822939376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.164496822939376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164496822939376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.164496822939376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.164496822939376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.164496822939376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.164496822939376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.164496822939376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.164496822939376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.164496822939376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162465997964815 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.162465997964815 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.162465997964815 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.162465997964815 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.162465997964815 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162465997964815 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162465997964815 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162465997964815 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162465997964815 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162465997964815 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162465997964815 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162465997964815 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.162465997964815 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.162465997964815 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.162465997964815 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.162465997964815 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.162465997964815 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.348860898128173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.348860898128173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.348860898128173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.348860898128173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38374698794099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.38374698794099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.38374698794099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.38374698794099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.38374698794099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.38374698794099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.38374698794099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.38374698794099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.38374698794099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38374698794099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.38374698794099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.38374698794099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.38374698794099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.38374698794099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.38374698794099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.38374698794099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.38374698794099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.366303943034582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.366303943034582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.366303943034582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.366303943034582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.366303943034582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.366303943034582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.366303943034582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.366303943034582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.366303943034582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.366303943034582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.366303943034582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.366303943034582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.366303943034582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.366303943034582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.366303943034582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.366303943034582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.366303943034582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.357582420581377 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.357582420581377 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.357582420581377 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.357582420581377 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.357582420581377 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.357582420581377 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.357582420581377 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.357582420581377 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.357582420581377 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.357582420581377 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.357582420581377 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.357582420581377 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.357582420581377 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.357582420581377 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.357582420581377 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.357582420581377 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.357582420581377 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.353221659354775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.353221659354775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.353221659354775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.353221659354775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.353221659354775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.353221659354775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.353221659354775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.353221659354775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.353221659354775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.353221659354775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.353221659354775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.353221659354775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.353221659354775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.353221659354775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.353221659354775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.353221659354775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.353221659354775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348860898128173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348860898128173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348860898128173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348860898128173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348860898128173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348860898128173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348860898128173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348860898128173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348860898128173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348860898128173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348860898128173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348860898128173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.348860898128173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.348860898128173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.348860898128173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.348860898128173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.348860898128173 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.61912328907007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.61912328907007 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.61912328907007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.61912328907007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.35721096016307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.35721096016307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.35721096016307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.35721096016307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.35721096016307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.35721096016307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.35721096016307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.35721096016307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.35721096016307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.35721096016307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.35721096016307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.35721096016307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.35721096016307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.35721096016307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.35721096016307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.35721096016307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.35721096016307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.48816712461657 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.48816712461657 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.48816712461657 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.48816712461657 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.48816712461657 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.48816712461657 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.48816712461657 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.48816712461657 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.48816712461657 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.48816712461657 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.48816712461657 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.48816712461657 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.48816712461657 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.48816712461657 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.48816712461657 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.48816712461657 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.48816712461657 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.55364520684332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.55364520684332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.55364520684332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.55364520684332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.55364520684332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.55364520684332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.55364520684332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.55364520684332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.55364520684332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.55364520684332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.55364520684332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.55364520684332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.55364520684332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.55364520684332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.55364520684332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.55364520684332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.55364520684332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.5863842479567 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.5863842479567 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.5863842479567 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.5863842479567 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.5863842479567 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.5863842479567 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.5863842479567 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.5863842479567 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.5863842479567 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.5863842479567 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.5863842479567 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.5863842479567 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.5863842479567 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.5863842479567 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.5863842479567 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.5863842479567 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.5863842479567 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61912328907007 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.61912328907007 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.61912328907007 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.61912328907007 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.61912328907007 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.61912328907007 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.61912328907007 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.61912328907007 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.61912328907007 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61912328907007 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.61912328907007 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.61912328907007 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61912328907007 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.61912328907007 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.61912328907007 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.61912328907007 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.61912328907007 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.47926808865564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.47926808865564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.47926808865564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.47926808865564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13134127979007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.13134127979007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.13134127979007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.13134127979007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.13134127979007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.13134127979007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13134127979007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13134127979007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13134127979007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13134127979007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13134127979007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13134127979007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13134127979007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.13134127979007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.13134127979007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13134127979007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13134127979007 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.30530468422285 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.30530468422285 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.30530468422285 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.30530468422285 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.30530468422285 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.30530468422285 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.30530468422285 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.30530468422285 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.30530468422285 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.30530468422285 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.30530468422285 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.30530468422285 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.30530468422285 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.30530468422285 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.30530468422285 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.30530468422285 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.30530468422285 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.39228638643924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.39228638643924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.39228638643924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.39228638643924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.39228638643924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.39228638643924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.39228638643924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.39228638643924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.39228638643924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.39228638643924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.39228638643924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.39228638643924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.39228638643924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.39228638643924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.39228638643924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.39228638643924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.39228638643924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.43577723754744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.43577723754744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.43577723754744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.43577723754744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.43577723754744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.43577723754744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.43577723754744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.43577723754744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.43577723754744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.43577723754744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.43577723754744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.43577723754744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.43577723754744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.43577723754744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.43577723754744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.43577723754744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.43577723754744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47926808865564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.47926808865564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.47926808865564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.47926808865564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.47926808865564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.47926808865564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.47926808865564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47926808865564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47926808865564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47926808865564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47926808865564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47926808865564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47926808865564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.47926808865564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.47926808865564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47926808865564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.47926808865564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.21772928038561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.21772928038561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.21772928038561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.21772928038561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89595635234705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.89595635234705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.89595635234705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.89595635234705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.89595635234705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.89595635234705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.89595635234705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.89595635234705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.89595635234705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.89595635234705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.89595635234705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.89595635234705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89595635234705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.89595635234705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.89595635234705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.89595635234705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.89595635234705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.05684281636633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.05684281636633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.05684281636633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.05684281636633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.05684281636633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.05684281636633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.05684281636633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.05684281636633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.05684281636633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.05684281636633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.05684281636633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.05684281636633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.05684281636633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.05684281636633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.05684281636633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.05684281636633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.05684281636633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13728604837597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.13728604837597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.13728604837597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.13728604837597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.13728604837597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.13728604837597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13728604837597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13728604837597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13728604837597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13728604837597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13728604837597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13728604837597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13728604837597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.13728604837597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.13728604837597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13728604837597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13728604837597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17750766438079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17750766438079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17750766438079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17750766438079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17750766438079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17750766438079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17750766438079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17750766438079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17750766438079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17750766438079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17750766438079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17750766438079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17750766438079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17750766438079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17750766438079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.17750766438079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.17750766438079 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21772928038561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.21772928038561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.21772928038561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.21772928038561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.21772928038561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.21772928038561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.21772928038561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.21772928038561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.21772928038561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.21772928038561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.21772928038561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.21772928038561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21772928038561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.21772928038561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.21772928038561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.21772928038561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.21772928038561 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.391615389434936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.391615389434936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.391615389434936 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.391615389434936 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43077692837843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.43077692837843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.43077692837843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.43077692837843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.43077692837843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.43077692837843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.43077692837843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.43077692837843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.43077692837843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43077692837843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.43077692837843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.43077692837843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.43077692837843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.43077692837843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.43077692837843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.43077692837843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.43077692837843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.411196158906683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.411196158906683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.411196158906683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.411196158906683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.411196158906683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.411196158906683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.411196158906683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.411196158906683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.411196158906683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.411196158906683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.411196158906683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.411196158906683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.411196158906683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.411196158906683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.411196158906683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.411196158906683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.411196158906683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40140577417081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.40140577417081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.40140577417081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.40140577417081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.40140577417081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.40140577417081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.40140577417081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.40140577417081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.40140577417081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40140577417081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.40140577417081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.40140577417081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.40140577417081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.40140577417081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.40140577417081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.40140577417081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.40140577417081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396510581802873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.396510581802873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.396510581802873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.396510581802873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.396510581802873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.396510581802873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.396510581802873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.396510581802873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.396510581802873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396510581802873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.396510581802873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.396510581802873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.396510581802873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.396510581802873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.396510581802873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.396510581802873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.396510581802873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391615389434936 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.391615389434936 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.391615389434936 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.391615389434936 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.391615389434936 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.391615389434936 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.391615389434936 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.391615389434936 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.391615389434936 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391615389434936 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.391615389434936 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.391615389434936 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.391615389434936 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.391615389434936 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.391615389434936 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.391615389434936 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.391615389434936 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0796616600039215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0796616600039215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0796616600039215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0796616600039215 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0716954940035293 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0716954940035293 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0716954940035293 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0716954940035293 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0716954940035293 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0716954940035293 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0716954940035293 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0716954940035293 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0716954940035293 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0716954940035293 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0716954940035293 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0716954940035293 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0716954940035293 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0716954940035293 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0716954940035293 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0716954940035293 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0716954940035293 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0756785770037254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0756785770037254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0756785770037254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0756785770037254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0756785770037254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0756785770037254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0756785770037254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0756785770037254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0756785770037254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0756785770037254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0756785770037254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0756785770037254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0756785770037254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0756785770037254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0756785770037254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0756785770037254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0756785770037254 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0776701185038235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0776701185038235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0776701185038235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0776701185038235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0776701185038235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0776701185038235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0776701185038235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0776701185038235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0776701185038235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0776701185038235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0776701185038235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0776701185038235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0776701185038235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0776701185038235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0776701185038235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0776701185038235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0776701185038235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0786658892538725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0786658892538725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0786658892538725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0786658892538725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0786658892538725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0786658892538725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0786658892538725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0786658892538725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0786658892538725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0786658892538725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0786658892538725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0786658892538725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0786658892538725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0786658892538725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0786658892538725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0786658892538725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0786658892538725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796616600039215 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0796616600039215 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0796616600039215 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0796616600039215 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0796616600039215 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0796616600039215 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0796616600039215 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0796616600039215 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0796616600039215 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796616600039215 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0796616600039215 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0796616600039215 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0796616600039215 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0796616600039215 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0796616600039215 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0796616600039215 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0796616600039215 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36857988265795 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36857988265795 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36857988265795 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.405437870923745 -8.54432851486886e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.387008876790847 -3.46345787680602e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.377794379724398 -9.23022557774596e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36857988265795 -8.3827489800193e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.057118437234308 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.057118437234308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.057118437234308 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.057118437234308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0628302809577388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0599743590960234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0585463981651657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0578324176997368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.057118437234308 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40372381364109 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40372381364109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40372381364109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40372381364109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363351432276981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.383537622959036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.393630718300063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.398677265970577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40372381364109 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40372381364109 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0193644227559417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0193644227559417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0193644227559417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0193644227559417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0213008650315359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0213008650315359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0213008650315359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0213008650315359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0213008650315359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0213008650315359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0213008650315359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0213008650315359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0213008650315359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0213008650315359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0213008650315359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0213008650315359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0213008650315359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0213008650315359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0213008650315359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0213008650315359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0213008650315359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0203326438937388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0203326438937388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0203326438937388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0203326438937388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0203326438937388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0203326438937388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0203326438937388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0203326438937388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0203326438937388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0203326438937388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0203326438937388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0203326438937388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0203326438937388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0203326438937388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0203326438937388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0203326438937388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0203326438937388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0198485333248403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0198485333248403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0198485333248403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0198485333248403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0198485333248403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0198485333248403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0198485333248403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0198485333248403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0198485333248403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0198485333248403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0198485333248403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0198485333248403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0198485333248403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0198485333248403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0198485333248403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0198485333248403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0198485333248403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.019606478040391 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.019606478040391 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.019606478040391 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.019606478040391 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.019606478040391 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.019606478040391 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.019606478040391 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.019606478040391 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.019606478040391 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.019606478040391 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.019606478040391 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.019606478040391 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.019606478040391 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.019606478040391 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.019606478040391 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.019606478040391 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.019606478040391 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0193644227559417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0193644227559417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0193644227559417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0193644227559417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0193644227559417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0193644227559417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0193644227559417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0193644227559417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0193644227559417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0193644227559417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0193644227559417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0193644227559417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0193644227559417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0193644227559417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0193644227559417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0193644227559417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0193644227559417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.385638255491129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.385638255491129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.385638255491129 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.385638255491129 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.424202081040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.424202081040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.424202081040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.424202081040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.424202081040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.424202081040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.424202081040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.424202081040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.424202081040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.424202081040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.424202081040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.424202081040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.424202081040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.424202081040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.424202081040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.424202081040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.424202081040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404920168265685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.404920168265685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.404920168265685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.404920168265685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.404920168265685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.404920168265685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.404920168265685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.404920168265685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.404920168265685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.404920168265685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404920168265685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.404920168265685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.404920168265685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.404920168265685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.404920168265685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.404920168265685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.404920168265685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.395279211878407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.395279211878407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.395279211878407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.395279211878407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.395279211878407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.395279211878407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.395279211878407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.395279211878407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.395279211878407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.395279211878407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.395279211878407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.395279211878407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.395279211878407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.395279211878407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.395279211878407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.395279211878407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.395279211878407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390458733684768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.390458733684768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.390458733684768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390458733684768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390458733684768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390458733684768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390458733684768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390458733684768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390458733684768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390458733684768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390458733684768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390458733684768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390458733684768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390458733684768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390458733684768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390458733684768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390458733684768 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385638255491129 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.385638255491129 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.385638255491129 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.385638255491129 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.385638255491129 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.385638255491129 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.385638255491129 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.385638255491129 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.385638255491129 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.385638255491129 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385638255491129 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.385638255491129 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.385638255491129 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.385638255491129 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.385638255491129 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.385638255491129 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.385638255491129 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0394991248714661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0394991248714661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0394991248714661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0394991248714661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0434490373586127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0434490373586127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0434490373586127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0434490373586127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0434490373586127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0434490373586127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0434490373586127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0434490373586127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0434490373586127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0434490373586127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0434490373586127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0434490373586127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0434490373586127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0434490373586127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0434490373586127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0434490373586127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0434490373586127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0414740811150394 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0414740811150394 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0414740811150394 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0414740811150394 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0414740811150394 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0414740811150394 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0414740811150394 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0414740811150394 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0414740811150394 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0414740811150394 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0414740811150394 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0414740811150394 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0414740811150394 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0414740811150394 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0414740811150394 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0414740811150394 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0414740811150394 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0404866029932528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0404866029932528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0404866029932528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0404866029932528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0404866029932528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0404866029932528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0404866029932528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0404866029932528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0404866029932528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0404866029932528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0404866029932528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0404866029932528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0404866029932528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0404866029932528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0404866029932528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0404866029932528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0404866029932528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0399928639323594 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0399928639323594 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0399928639323594 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0399928639323594 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0399928639323594 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0399928639323594 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0399928639323594 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0399928639323594 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0399928639323594 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0399928639323594 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0399928639323594 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0399928639323594 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0399928639323594 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0399928639323594 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0399928639323594 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0399928639323594 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0399928639323594 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0394991248714661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0394991248714661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0394991248714661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0394991248714661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0394991248714661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0394991248714661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0394991248714661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0394991248714661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0394991248714661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0394991248714661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0394991248714661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0394991248714661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0394991248714661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0394991248714661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0394991248714661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0394991248714661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0394991248714661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.226361379159914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.226361379159914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.226361379159914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.226361379159914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203725241243923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.203725241243923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.203725241243923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.203725241243923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.203725241243923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.203725241243923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.203725241243923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.203725241243923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.203725241243923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.203725241243923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203725241243923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.203725241243923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.203725241243923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.203725241243923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.203725241243923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.203725241243923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.203725241243923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215043310201918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.215043310201918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.215043310201918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.215043310201918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.215043310201918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.215043310201918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.215043310201918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.215043310201918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.215043310201918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.215043310201918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215043310201918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.215043310201918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.215043310201918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.215043310201918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.215043310201918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.215043310201918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.215043310201918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220702344680916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.220702344680916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.220702344680916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.220702344680916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.220702344680916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.220702344680916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.220702344680916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.220702344680916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.220702344680916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.220702344680916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220702344680916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.220702344680916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.220702344680916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.220702344680916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.220702344680916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.220702344680916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.220702344680916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223531861920415 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.223531861920415 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.223531861920415 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.223531861920415 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.223531861920415 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.223531861920415 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.223531861920415 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.223531861920415 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.223531861920415 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.223531861920415 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223531861920415 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.223531861920415 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.223531861920415 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.223531861920415 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.223531861920415 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.223531861920415 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.223531861920415 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226361379159914 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226361379159914 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226361379159914 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226361379159914 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226361379159914 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226361379159914 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226361379159914 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226361379159914 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226361379159914 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226361379159914 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226361379159914 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226361379159914 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226361379159914 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.226361379159914 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.226361379159914 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.226361379159914 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.226361379159914 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163226864586803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163226864586803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163226864586803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163226864586803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146904178128123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155065521357463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.159146192972133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.161186528779468 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163226864586803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387093549866843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387093549866843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387093549866843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387093549866843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.348384194880158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.367738872373501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.377416211120172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382254880493507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387093549866843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.204467442951099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.204467442951099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.204467442951099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.204467442951099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.224914187246209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.214690815098654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209579129024876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207023285987988 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.204467442951099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.204467442951099 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.384113040035522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.384113040035522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.384113040035522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.384113040035522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422524344039074 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422524344039074 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422524344039074 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422524344039074 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422524344039074 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422524344039074 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422524344039074 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422524344039074 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422524344039074 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422524344039074 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422524344039074 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422524344039074 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422524344039074 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422524344039074 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422524344039074 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422524344039074 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422524344039074 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.403318692037298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.403318692037298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.403318692037298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.403318692037298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.403318692037298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.403318692037298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.403318692037298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.403318692037298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.403318692037298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.403318692037298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.403318692037298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.403318692037298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.403318692037298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.403318692037298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.403318692037298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.403318692037298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.403318692037298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39371586603641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.39371586603641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.39371586603641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.39371586603641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39371586603641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39371586603641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39371586603641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39371586603641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39371586603641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39371586603641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39371586603641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39371586603641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39371586603641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39371586603641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39371586603641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39371586603641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39371586603641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.388914453035966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.388914453035966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.388914453035966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.388914453035966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.388914453035966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.388914453035966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.388914453035966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.388914453035966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.388914453035966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.388914453035966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.388914453035966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.388914453035966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.388914453035966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.388914453035966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.388914453035966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.388914453035966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.388914453035966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384113040035522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.384113040035522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.384113040035522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.384113040035522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.384113040035522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.384113040035522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.384113040035522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.384113040035522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.384113040035522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.384113040035522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384113040035522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.384113040035522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.384113040035522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.384113040035522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.384113040035522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.384113040035522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.384113040035522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.468458975709727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.468458975709727 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.468458975709727 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.468458975709727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.515304873280699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.515304873280699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.515304873280699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.515304873280699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.515304873280699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.515304873280699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.515304873280699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.515304873280699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.515304873280699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.515304873280699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.515304873280699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.515304873280699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.515304873280699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.515304873280699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.515304873280699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.515304873280699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.515304873280699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491881924495213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491881924495213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491881924495213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491881924495213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491881924495213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491881924495213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491881924495213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491881924495213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491881924495213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491881924495213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491881924495213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491881924495213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491881924495213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491881924495213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.491881924495213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.491881924495213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.491881924495213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.48017045010247 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.48017045010247 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.48017045010247 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.48017045010247 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.48017045010247 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.48017045010247 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.48017045010247 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.48017045010247 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.48017045010247 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.48017045010247 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.48017045010247 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.48017045010247 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.48017045010247 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.48017045010247 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.48017045010247 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.48017045010247 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.48017045010247 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474314712906098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.474314712906098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.474314712906098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.474314712906098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.474314712906098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.474314712906098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.474314712906098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.474314712906098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.474314712906098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.474314712906098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474314712906098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.474314712906098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.474314712906098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.474314712906098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.474314712906098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.474314712906098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.474314712906098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468458975709727 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.468458975709727 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.468458975709727 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.468458975709727 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.468458975709727 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.468458975709727 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.468458975709727 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.468458975709727 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.468458975709727 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468458975709727 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468458975709727 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468458975709727 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.468458975709727 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.468458975709727 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.468458975709727 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.468458975709727 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.468458975709727 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0169257221989513 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0169257221989513 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0169257221989513 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0169257221989513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0186182944188464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0186182944188464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0186182944188464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0186182944188464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0186182944188464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0186182944188464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0186182944188464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0186182944188464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0186182944188464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0186182944188464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0186182944188464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0186182944188464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0186182944188464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0186182944188464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0186182944188464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0186182944188464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0186182944188464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177720083088988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177720083088988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177720083088988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177720083088988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177720083088988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177720083088988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177720083088988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177720083088988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177720083088988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177720083088988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177720083088988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177720083088988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177720083088988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177720083088988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177720083088988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0177720083088988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0177720083088988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173488652539251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0173488652539251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0173488652539251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0173488652539251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0173488652539251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0173488652539251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0173488652539251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173488652539251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173488652539251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173488652539251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173488652539251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173488652539251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173488652539251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173488652539251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173488652539251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173488652539251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173488652539251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0171372937264382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0171372937264382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0171372937264382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0171372937264382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0171372937264382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0171372937264382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0171372937264382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0171372937264382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0171372937264382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0171372937264382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0171372937264382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0171372937264382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0171372937264382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0171372937264382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0171372937264382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0171372937264382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0171372937264382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0169257221989513 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0169257221989513 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0169257221989513 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0169257221989513 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0169257221989513 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0169257221989513 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0169257221989513 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0169257221989513 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0169257221989513 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0169257221989513 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0169257221989513 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0169257221989513 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0169257221989513 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0169257221989513 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0169257221989513 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0169257221989513 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0169257221989513 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0451594490040201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0451594490040201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0451594490040201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0451594490040201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0496753939044221 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0496753939044221 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0496753939044221 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0496753939044221 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0496753939044221 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0496753939044221 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0496753939044221 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0496753939044221 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0496753939044221 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0496753939044221 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0496753939044221 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0496753939044221 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0496753939044221 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0496753939044221 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0496753939044221 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0496753939044221 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0496753939044221 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0474174214542211 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0474174214542211 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0474174214542211 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0474174214542211 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0474174214542211 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0474174214542211 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0474174214542211 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0474174214542211 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0474174214542211 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0474174214542211 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0474174214542211 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0474174214542211 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0474174214542211 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0474174214542211 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0474174214542211 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0474174214542211 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0474174214542211 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0462884352291206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0462884352291206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0462884352291206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0462884352291206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0462884352291206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0462884352291206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0462884352291206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0462884352291206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0462884352291206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0462884352291206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0462884352291206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0462884352291206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0462884352291206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0462884352291206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0462884352291206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0462884352291206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0462884352291206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0457239421165704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0457239421165704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0457239421165704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0457239421165704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0457239421165704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0457239421165704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0457239421165704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0457239421165704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0457239421165704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0457239421165704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0457239421165704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0457239421165704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0457239421165704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0457239421165704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0457239421165704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0457239421165704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0457239421165704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451594490040201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0451594490040201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0451594490040201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0451594490040201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0451594490040201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0451594490040201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0451594490040201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0451594490040201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0451594490040201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0451594490040201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0451594490040201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0451594490040201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0451594490040201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0451594490040201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0451594490040201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0451594490040201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0451594490040201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.244628053298643 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.244628053298643 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.244628053298643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.244628053298643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.269090858628507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.269090858628507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.269090858628507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.269090858628507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.269090858628507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.269090858628507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.269090858628507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.269090858628507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.269090858628507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.269090858628507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.269090858628507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.269090858628507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.269090858628507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.269090858628507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.269090858628507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.269090858628507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.269090858628507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.256859455963575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.256859455963575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.256859455963575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.256859455963575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.256859455963575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.256859455963575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.256859455963575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.256859455963575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.256859455963575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.256859455963575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.256859455963575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.256859455963575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.256859455963575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.256859455963575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.256859455963575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.256859455963575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.256859455963575 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.250743754631109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.250743754631109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.250743754631109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.250743754631109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.250743754631109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.250743754631109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.250743754631109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.250743754631109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.250743754631109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.250743754631109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.250743754631109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.250743754631109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.250743754631109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.250743754631109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.250743754631109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.250743754631109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.250743754631109 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.247685903964876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.247685903964876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.247685903964876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.247685903964876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.247685903964876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.247685903964876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.247685903964876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.247685903964876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.247685903964876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.247685903964876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.247685903964876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.247685903964876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.247685903964876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.247685903964876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.247685903964876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.247685903964876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.247685903964876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244628053298643 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.244628053298643 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.244628053298643 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.244628053298643 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.244628053298643 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.244628053298643 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.244628053298643 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.244628053298643 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.244628053298643 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.244628053298643 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244628053298643 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.244628053298643 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.244628053298643 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.244628053298643 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.244628053298643 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.244628053298643 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.244628053298643 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.719216286690606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.719216286690606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.719216286690606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.719216286690606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.791137915359667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.791137915359667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.791137915359667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.791137915359667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.791137915359667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.791137915359667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.791137915359667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.791137915359667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.791137915359667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.791137915359667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.791137915359667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.791137915359667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.791137915359667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.791137915359667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.791137915359667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.791137915359667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.791137915359667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.755177101025136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.755177101025136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.755177101025136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.755177101025136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.755177101025136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.755177101025136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.755177101025136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.755177101025136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.755177101025136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.755177101025136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.755177101025136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.755177101025136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.755177101025136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.755177101025136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.755177101025136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.755177101025136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.755177101025136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.737196693857871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.737196693857871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.737196693857871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.737196693857871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.737196693857871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.737196693857871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.737196693857871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.737196693857871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.737196693857871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.737196693857871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.737196693857871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.737196693857871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.737196693857871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.737196693857871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.737196693857871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.737196693857871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.737196693857871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.728206490274239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.728206490274239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.728206490274239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.728206490274239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.728206490274239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.728206490274239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.728206490274239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.728206490274239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.728206490274239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.728206490274239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.728206490274239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.728206490274239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.728206490274239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.728206490274239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.728206490274239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.728206490274239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.728206490274239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.719216286690606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.719216286690606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.719216286690606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.719216286690606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.719216286690606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.719216286690606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.719216286690606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.719216286690606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.719216286690606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.719216286690606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.719216286690606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.719216286690606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.719216286690606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.719216286690606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.719216286690606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.719216286690606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.719216286690606 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.6553461226337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.6553461226337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.6553461226337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.6553461226337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.38981151037033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.52257881650202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.58896246956786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.62215429610078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.6553461226337 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.6553461226337 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.12674835595303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.12674835595303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.12674835595303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.12674835595303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.81407352035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.81407352035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.81407352035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.81407352035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.81407352035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.81407352035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.81407352035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.81407352035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.81407352035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.81407352035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.81407352035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.81407352035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.81407352035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.81407352035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.81407352035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.81407352035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.81407352035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.97041093815538 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.97041093815538 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.97041093815538 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.97041093815538 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.97041093815538 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.97041093815538 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.97041093815538 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.97041093815538 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.97041093815538 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.97041093815538 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.97041093815538 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.97041093815538 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.97041093815538 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.97041093815538 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.97041093815538 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.97041093815538 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.97041093815538 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.04857964705421 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.04857964705421 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.04857964705421 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.04857964705421 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.04857964705421 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.04857964705421 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.04857964705421 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.04857964705421 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.04857964705421 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.04857964705421 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.04857964705421 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.04857964705421 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.04857964705421 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.04857964705421 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.04857964705421 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.04857964705421 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.04857964705421 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.08766400150362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.08766400150362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.08766400150362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.08766400150362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.08766400150362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.08766400150362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.08766400150362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.08766400150362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.08766400150362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.08766400150362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08766400150362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.08766400150362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.08766400150362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.08766400150362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.08766400150362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.08766400150362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.08766400150362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12674835595303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.12674835595303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.12674835595303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.12674835595303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.12674835595303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.12674835595303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.12674835595303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.12674835595303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.12674835595303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.12674835595303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.12674835595303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.12674835595303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.12674835595303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.12674835595303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.12674835595303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.12674835595303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.12674835595303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.144477524465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.144477524465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.144477524465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.144477524465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.8300297720185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.8300297720185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.8300297720185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.8300297720185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.8300297720185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.8300297720185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.8300297720185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.8300297720185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.8300297720185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.8300297720185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.8300297720185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.8300297720185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.8300297720185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.8300297720185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.8300297720185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.8300297720185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.8300297720185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.98725364824175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.98725364824175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.98725364824175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.98725364824175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.98725364824175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.98725364824175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.98725364824175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.98725364824175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.98725364824175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.98725364824175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.98725364824175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98725364824175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.98725364824175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.98725364824175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.98725364824175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.98725364824175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.98725364824175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.06586558635337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.06586558635337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.06586558635337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.06586558635337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.06586558635337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.06586558635337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.06586558635337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.06586558635337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.06586558635337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06586558635337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06586558635337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.06586558635337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.06586558635337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.06586558635337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.06586558635337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.06586558635337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.06586558635337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.10517155540918 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.10517155540918 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.10517155540918 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.10517155540918 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.10517155540918 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.10517155540918 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.10517155540918 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.10517155540918 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.10517155540918 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.10517155540918 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.10517155540918 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.10517155540918 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.10517155540918 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.10517155540918 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.10517155540918 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.10517155540918 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.10517155540918 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.144477524465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.144477524465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.144477524465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.144477524465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.144477524465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.144477524465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.144477524465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.144477524465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.144477524465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.144477524465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.144477524465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.144477524465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.144477524465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.144477524465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.144477524465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.144477524465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.144477524465 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270266905600412 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270266905600412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270266905600412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270266905600412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243240215040371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243240215040371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243240215040371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243240215040371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243240215040371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243240215040371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243240215040371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243240215040371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243240215040371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243240215040371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243240215040371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243240215040371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243240215040371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.243240215040371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.243240215040371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.243240215040371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.243240215040371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256753560320391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.256753560320391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.256753560320391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.256753560320391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.256753560320391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256753560320391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.256753560320391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256753560320391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.256753560320391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.256753560320391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256753560320391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.256753560320391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.256753560320391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.256753560320391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.256753560320391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.256753560320391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.256753560320391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.263510232960402 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.263510232960402 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.263510232960402 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.263510232960402 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.263510232960402 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.263510232960402 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.263510232960402 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.263510232960402 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.263510232960402 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.263510232960402 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.263510232960402 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.263510232960402 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.263510232960402 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.263510232960402 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.263510232960402 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.263510232960402 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.263510232960402 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266888569280407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.266888569280407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.266888569280407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.266888569280407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.266888569280407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.266888569280407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.266888569280407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.266888569280407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.266888569280407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.266888569280407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266888569280407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.266888569280407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.266888569280407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.266888569280407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.266888569280407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.266888569280407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.266888569280407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270266905600412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.270266905600412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.270266905600412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.270266905600412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270266905600412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270266905600412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270266905600412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270266905600412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270266905600412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270266905600412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270266905600412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270266905600412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270266905600412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270266905600412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270266905600412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270266905600412 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270266905600412 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.90504304773048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.90504304773048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.90504304773048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.90504304773048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.61453874295743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.75979089534396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.83241697153722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.86873000963385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.90504304773048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.90504304773048 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0779294418106167 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0779294418106167 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0779294418106167 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0779294418106167 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.070136497629555 -9.07389634810144e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0740329697200858 -4.02244614521818e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0759812057653512 -1.49672104377656e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0769553237879839 -2.33858493055743e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0779294418106167 -8.9710988427407e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301821911849866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301821911849866 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301821911849866 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301821911849866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.271639720664879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286730816257373 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.294276364053619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.298049137951743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.301821911849866 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.301821911849866 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54905633688759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54905633688759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54905633688759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54905633688759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.19415070319883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.37160352004321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.4603299284654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.5046931326765 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54905633688759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54905633688759 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373946726471804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373946726471804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373946726471804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373946726471804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.336552053824623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.336552053824623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.336552053824623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.336552053824623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.336552053824623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.336552053824623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.336552053824623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.336552053824623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.336552053824623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.336552053824623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.336552053824623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.336552053824623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.336552053824623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.336552053824623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.336552053824623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.336552053824623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.336552053824623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.355249390148213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.355249390148213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.355249390148213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.355249390148213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.355249390148213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.355249390148213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.355249390148213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.355249390148213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.355249390148213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.355249390148213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.355249390148213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.355249390148213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.355249390148213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.355249390148213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.355249390148213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.355249390148213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.355249390148213 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.364598058310009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.364598058310009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.364598058310009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.364598058310009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.364598058310009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.364598058310009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.364598058310009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.364598058310009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.364598058310009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.364598058310009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.364598058310009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.364598058310009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.364598058310009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.364598058310009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.364598058310009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.364598058310009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.364598058310009 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.369272392390906 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.369272392390906 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.369272392390906 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.369272392390906 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.369272392390906 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.369272392390906 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.369272392390906 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.369272392390906 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.369272392390906 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.369272392390906 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.369272392390906 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.369272392390906 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.369272392390906 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.369272392390906 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.369272392390906 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.369272392390906 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.369272392390906 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373946726471804 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.373946726471804 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.373946726471804 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.373946726471804 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.373946726471804 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373946726471804 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373946726471804 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373946726471804 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373946726471804 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373946726471804 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373946726471804 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373946726471804 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373946726471804 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373946726471804 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373946726471804 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373946726471804 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373946726471804 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.348993342230044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.348993342230044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.348993342230044 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.348993342230044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.383892676453048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.383892676453048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.383892676453048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.383892676453048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.383892676453048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.383892676453048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.383892676453048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.383892676453048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.383892676453048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.383892676453048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.383892676453048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.383892676453048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.383892676453048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.383892676453048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.383892676453048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.383892676453048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.383892676453048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.366443009341546 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.366443009341546 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.366443009341546 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.366443009341546 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.366443009341546 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.366443009341546 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.366443009341546 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.366443009341546 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.366443009341546 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.366443009341546 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.366443009341546 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.366443009341546 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.366443009341546 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.366443009341546 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.366443009341546 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.366443009341546 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.366443009341546 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.357718175785795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.357718175785795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.357718175785795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.357718175785795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.357718175785795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.357718175785795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.357718175785795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.357718175785795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.357718175785795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.357718175785795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.357718175785795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.357718175785795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.357718175785795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.357718175785795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.357718175785795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.357718175785795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.357718175785795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.353355759007919 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.353355759007919 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.353355759007919 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.353355759007919 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.353355759007919 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.353355759007919 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.353355759007919 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.353355759007919 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.353355759007919 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.353355759007919 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.353355759007919 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.353355759007919 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.353355759007919 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.353355759007919 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.353355759007919 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.353355759007919 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.353355759007919 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348993342230044 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.348993342230044 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348993342230044 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348993342230044 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348993342230044 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348993342230044 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348993342230044 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348993342230044 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348993342230044 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348993342230044 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348993342230044 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348993342230044 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348993342230044 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.348993342230044 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.348993342230044 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.348993342230044 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.348993342230044 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.229042684724123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.229042684724123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.229042684724123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.229042684724123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.206138416251711 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.206138416251711 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.206138416251711 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.206138416251711 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.206138416251711 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.206138416251711 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.206138416251711 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.206138416251711 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.206138416251711 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.206138416251711 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.206138416251711 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.206138416251711 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.206138416251711 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.206138416251711 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.206138416251711 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.206138416251711 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.206138416251711 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217590550487917 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.217590550487917 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.217590550487917 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.217590550487917 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.217590550487917 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.217590550487917 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.217590550487917 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.217590550487917 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.217590550487917 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.217590550487917 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217590550487917 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.217590550487917 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.217590550487917 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.217590550487917 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.217590550487917 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.217590550487917 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.217590550487917 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.22331661760602 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.22331661760602 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.22331661760602 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.22331661760602 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.22331661760602 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.22331661760602 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.22331661760602 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.22331661760602 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.22331661760602 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.22331661760602 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.22331661760602 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.22331661760602 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.22331661760602 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.22331661760602 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.22331661760602 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.22331661760602 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.22331661760602 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226179651165072 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226179651165072 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226179651165072 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226179651165072 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226179651165072 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226179651165072 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226179651165072 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226179651165072 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226179651165072 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226179651165072 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226179651165072 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226179651165072 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226179651165072 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.226179651165072 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.226179651165072 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.226179651165072 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.226179651165072 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229042684724123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229042684724123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229042684724123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229042684724123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229042684724123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229042684724123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229042684724123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229042684724123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229042684724123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229042684724123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229042684724123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229042684724123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229042684724123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229042684724123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229042684724123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.229042684724123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.229042684724123 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.462249211270086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.462249211270086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.462249211270086 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.462249211270086 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.508474132397095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.508474132397095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.508474132397095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.508474132397095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.508474132397095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.508474132397095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.508474132397095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.508474132397095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.508474132397095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.508474132397095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.508474132397095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.508474132397095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.508474132397095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.508474132397095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.508474132397095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.508474132397095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.508474132397095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.48536167183359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.48536167183359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.48536167183359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.48536167183359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.48536167183359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.48536167183359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.48536167183359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.48536167183359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.48536167183359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.48536167183359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.48536167183359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.48536167183359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.48536167183359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.48536167183359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.48536167183359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.48536167183359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.48536167183359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.473805441551838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.473805441551838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.473805441551838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.473805441551838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.473805441551838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.473805441551838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.473805441551838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.473805441551838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.473805441551838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.473805441551838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.473805441551838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.473805441551838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.473805441551838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.473805441551838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.473805441551838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.473805441551838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.473805441551838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468027326410962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.468027326410962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.468027326410962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.468027326410962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.468027326410962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.468027326410962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.468027326410962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.468027326410962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.468027326410962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468027326410962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468027326410962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468027326410962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.468027326410962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.468027326410962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.468027326410962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.468027326410962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.468027326410962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462249211270086 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.462249211270086 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.462249211270086 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.462249211270086 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.462249211270086 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.462249211270086 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.462249211270086 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.462249211270086 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.462249211270086 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.462249211270086 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462249211270086 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.462249211270086 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.462249211270086 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.462249211270086 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.462249211270086 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.462249211270086 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.462249211270086 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.202280335681037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.202280335681037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.202280335681037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.202280335681037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22250836924914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.22250836924914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.22250836924914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.22250836924914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.22250836924914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.22250836924914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.22250836924914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.22250836924914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.22250836924914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.22250836924914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22250836924914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.22250836924914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.22250836924914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.22250836924914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.22250836924914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.22250836924914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.22250836924914 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212394352465089 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.212394352465089 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.212394352465089 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.212394352465089 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.212394352465089 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.212394352465089 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.212394352465089 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.212394352465089 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212394352465089 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212394352465089 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212394352465089 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212394352465089 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212394352465089 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212394352465089 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212394352465089 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212394352465089 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212394352465089 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207337344073063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.207337344073063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.207337344073063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.207337344073063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.207337344073063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.207337344073063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207337344073063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207337344073063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207337344073063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207337344073063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207337344073063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207337344073063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207337344073063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207337344073063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207337344073063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207337344073063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207337344073063 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.20480883987705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.20480883987705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.20480883987705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.20480883987705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.20480883987705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.20480883987705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.20480883987705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.20480883987705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.20480883987705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.20480883987705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.20480883987705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.20480883987705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.20480883987705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.20480883987705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.20480883987705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.20480883987705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.20480883987705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202280335681037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.202280335681037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.202280335681037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.202280335681037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.202280335681037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.202280335681037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.202280335681037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.202280335681037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.202280335681037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.202280335681037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202280335681037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.202280335681037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.202280335681037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.202280335681037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.202280335681037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.202280335681037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.202280335681037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.425462681620039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.425462681620039 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.425462681620039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.425462681620039 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382916413458035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.382916413458035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.382916413458035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.382916413458035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.382916413458035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.382916413458035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.382916413458035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.382916413458035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382916413458035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382916413458035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382916413458035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382916413458035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382916413458035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382916413458035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382916413458035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382916413458035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382916413458035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404189547539037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.404189547539037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.404189547539037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.404189547539037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.404189547539037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.404189547539037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.404189547539037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.404189547539037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.404189547539037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.404189547539037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404189547539037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.404189547539037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.404189547539037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.404189547539037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.404189547539037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.404189547539037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.404189547539037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414826114579538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.414826114579538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.414826114579538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.414826114579538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.414826114579538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.414826114579538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.414826114579538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414826114579538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414826114579538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414826114579538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414826114579538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414826114579538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414826114579538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414826114579538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414826114579538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414826114579538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414826114579538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420144398099788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.420144398099788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.420144398099788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.420144398099788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.420144398099788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.420144398099788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.420144398099788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.420144398099788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.420144398099788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.420144398099788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420144398099788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.420144398099788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.420144398099788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.420144398099788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.420144398099788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.420144398099788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.420144398099788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425462681620039 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.425462681620039 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.425462681620039 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.425462681620039 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.425462681620039 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.425462681620039 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.425462681620039 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.425462681620039 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.425462681620039 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.425462681620039 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425462681620039 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.425462681620039 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.425462681620039 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.425462681620039 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.425462681620039 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.425462681620039 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.425462681620039 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.475661106516176 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.475661106516176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.475661106516176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.475661106516176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523227217167794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.523227217167794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.523227217167794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.523227217167794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.523227217167794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.523227217167794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.523227217167794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.523227217167794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523227217167794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523227217167794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523227217167794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523227217167794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523227217167794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523227217167794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523227217167794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523227217167794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523227217167794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499444161841985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.499444161841985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.499444161841985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.499444161841985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.499444161841985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.499444161841985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.499444161841985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.499444161841985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.499444161841985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.499444161841985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499444161841985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.499444161841985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.499444161841985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.499444161841985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.499444161841985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.499444161841985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.499444161841985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.487552634179081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.487552634179081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.487552634179081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.487552634179081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.487552634179081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.487552634179081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.487552634179081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.487552634179081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.487552634179081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.487552634179081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.487552634179081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.487552634179081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.487552634179081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.487552634179081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.487552634179081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.487552634179081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.487552634179081 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.481606870347629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.481606870347629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.481606870347629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.481606870347629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.481606870347629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.481606870347629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.481606870347629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.481606870347629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.481606870347629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.481606870347629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.481606870347629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.481606870347629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.481606870347629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.481606870347629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.481606870347629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.481606870347629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.481606870347629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475661106516176 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.475661106516176 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.475661106516176 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.475661106516176 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.475661106516176 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.475661106516176 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.475661106516176 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.475661106516176 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.475661106516176 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.475661106516176 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475661106516176 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.475661106516176 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.475661106516176 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.475661106516176 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.475661106516176 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.475661106516176 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.475661106516176 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37843017327465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37843017327465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37843017327465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37843017327465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51627319060212 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.51627319060212 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.51627319060212 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.51627319060212 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51627319060212 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51627319060212 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51627319060212 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51627319060212 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51627319060212 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51627319060212 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51627319060212 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51627319060212 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51627319060212 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51627319060212 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51627319060212 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51627319060212 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51627319060212 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44735168193838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.44735168193838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.44735168193838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.44735168193838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.44735168193838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.44735168193838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.44735168193838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44735168193838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44735168193838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44735168193838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44735168193838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44735168193838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44735168193838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44735168193838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44735168193838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44735168193838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44735168193838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41289092760652 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.41289092760652 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.41289092760652 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.41289092760652 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.41289092760652 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.41289092760652 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41289092760652 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41289092760652 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41289092760652 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41289092760652 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41289092760652 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41289092760652 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41289092760652 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41289092760652 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41289092760652 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41289092760652 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41289092760652 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.39566055044058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.39566055044058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.39566055044058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.39566055044058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.39566055044058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.39566055044058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.39566055044058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.39566055044058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.39566055044058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.39566055044058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.39566055044058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.39566055044058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.39566055044058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.39566055044058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.39566055044058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.39566055044058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.39566055044058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37843017327465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.37843017327465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37843017327465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37843017327465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37843017327465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37843017327465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37843017327465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37843017327465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37843017327465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37843017327465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37843017327465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37843017327465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37843017327465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37843017327465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37843017327465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37843017327465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37843017327465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.899327419421443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.899327419421443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.899327419421443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.899327419421443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.989260161363587 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.989260161363587 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.989260161363587 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.989260161363587 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.989260161363587 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.989260161363587 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.989260161363587 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.989260161363587 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.989260161363587 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.989260161363587 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.989260161363587 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.989260161363587 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.989260161363587 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.989260161363587 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.989260161363587 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.989260161363587 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.989260161363587 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.944293790392515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.944293790392515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.944293790392515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.944293790392515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.944293790392515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.944293790392515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.944293790392515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.944293790392515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.944293790392515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.944293790392515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.944293790392515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.944293790392515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.944293790392515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.944293790392515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.944293790392515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.944293790392515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.944293790392515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921810604906979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.921810604906979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.921810604906979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.921810604906979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.921810604906979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.921810604906979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.921810604906979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.921810604906979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.921810604906979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921810604906979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.921810604906979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.921810604906979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.921810604906979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.921810604906979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.921810604906979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.921810604906979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.921810604906979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.910569012164211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.910569012164211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.910569012164211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.910569012164211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.910569012164211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.910569012164211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.910569012164211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.910569012164211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.910569012164211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.910569012164211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.910569012164211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.910569012164211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.910569012164211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.910569012164211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.910569012164211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.910569012164211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.910569012164211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899327419421443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.899327419421443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.899327419421443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.899327419421443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.899327419421443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.899327419421443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.899327419421443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.899327419421443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.899327419421443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899327419421443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.899327419421443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.899327419421443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.899327419421443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.899327419421443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.899327419421443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.899327419421443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.899327419421443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.807123119126453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.807123119126453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.807123119126453 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.807123119126453 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.887835431039099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.887835431039099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.887835431039099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.887835431039099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.887835431039099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.887835431039099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.887835431039099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.887835431039099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.887835431039099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.887835431039099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.887835431039099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.887835431039099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.887835431039099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.887835431039099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.887835431039099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.887835431039099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.887835431039099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.847479275082776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.847479275082776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.847479275082776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.847479275082776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.847479275082776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.847479275082776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.847479275082776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.847479275082776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.847479275082776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.847479275082776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.847479275082776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.847479275082776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.847479275082776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.847479275082776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.847479275082776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.847479275082776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.847479275082776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.827301197104615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.827301197104615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.827301197104615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.827301197104615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.827301197104615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.827301197104615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.827301197104615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.827301197104615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.827301197104615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.827301197104615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.827301197104615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.827301197104615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.827301197104615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.827301197104615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.827301197104615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.827301197104615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.827301197104615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.817212158115534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.817212158115534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.817212158115534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.817212158115534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.817212158115534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.817212158115534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.817212158115534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.817212158115534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.817212158115534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.817212158115534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.817212158115534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.817212158115534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.817212158115534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.817212158115534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.817212158115534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.817212158115534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.817212158115534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807123119126453 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.807123119126453 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.807123119126453 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.807123119126453 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.807123119126453 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.807123119126453 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.807123119126453 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.807123119126453 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.807123119126453 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807123119126453 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.807123119126453 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.807123119126453 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.807123119126453 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.807123119126453 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.807123119126453 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.807123119126453 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.807123119126453 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32886124377766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32886124377766 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32886124377766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32886124377766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46174736815543 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.46174736815543 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.46174736815543 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46174736815543 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46174736815543 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46174736815543 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46174736815543 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46174736815543 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46174736815543 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46174736815543 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46174736815543 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46174736815543 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46174736815543 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46174736815543 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46174736815543 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46174736815543 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46174736815543 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.39530430596654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.39530430596654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.39530430596654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.39530430596654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.39530430596654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.39530430596654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.39530430596654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.39530430596654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.39530430596654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.39530430596654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.39530430596654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.39530430596654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.39530430596654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.39530430596654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.39530430596654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.39530430596654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.39530430596654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3620827748721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.3620827748721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.3620827748721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.3620827748721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.3620827748721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.3620827748721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.3620827748721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3620827748721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3620827748721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3620827748721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3620827748721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3620827748721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3620827748721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3620827748721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3620827748721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3620827748721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3620827748721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34547200932488 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34547200932488 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34547200932488 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34547200932488 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34547200932488 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34547200932488 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34547200932488 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34547200932488 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34547200932488 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34547200932488 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34547200932488 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34547200932488 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34547200932488 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34547200932488 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.34547200932488 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.34547200932488 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.34547200932488 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32886124377766 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32886124377766 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32886124377766 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32886124377766 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32886124377766 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32886124377766 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32886124377766 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32886124377766 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32886124377766 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32886124377766 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32886124377766 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32886124377766 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32886124377766 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32886124377766 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32886124377766 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32886124377766 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32886124377766 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.893737855970941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.893737855970941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.893737855970941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.893737855970941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.983111641568036 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.983111641568036 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.983111641568036 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.983111641568036 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.983111641568036 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.983111641568036 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.983111641568036 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.983111641568036 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.983111641568036 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.983111641568036 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.983111641568036 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.983111641568036 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.983111641568036 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.983111641568036 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.983111641568036 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.983111641568036 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.983111641568036 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.938424748769489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.938424748769489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.938424748769489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.938424748769489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.938424748769489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.938424748769489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.938424748769489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.938424748769489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.938424748769489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.938424748769489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.938424748769489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.938424748769489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.938424748769489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.938424748769489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.938424748769489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.938424748769489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.938424748769489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.916081302370215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.916081302370215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.916081302370215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.916081302370215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.916081302370215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.916081302370215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.916081302370215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.916081302370215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.916081302370215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.916081302370215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.916081302370215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.916081302370215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.916081302370215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.916081302370215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.916081302370215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.916081302370215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.916081302370215 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.904909579170578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.904909579170578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.904909579170578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.904909579170578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.904909579170578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.904909579170578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.904909579170578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.904909579170578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.904909579170578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.904909579170578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.904909579170578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.904909579170578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.904909579170578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.904909579170578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.904909579170578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.904909579170578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.904909579170578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.893737855970941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.893737855970941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.893737855970941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.893737855970941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.893737855970941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.893737855970941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.893737855970941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.893737855970941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.893737855970941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.893737855970941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.893737855970941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.893737855970941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.893737855970941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.893737855970941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.893737855970941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.893737855970941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.893737855970941 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.135109662167346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.135109662167346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.135109662167346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.135109662167346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148620628384081 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.148620628384081 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.148620628384081 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.148620628384081 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.148620628384081 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148620628384081 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148620628384081 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148620628384081 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148620628384081 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148620628384081 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148620628384081 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148620628384081 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148620628384081 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148620628384081 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148620628384081 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148620628384081 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148620628384081 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.141865145275714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.141865145275714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.141865145275714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.141865145275714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.141865145275714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.141865145275714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.141865145275714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.141865145275714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.141865145275714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.141865145275714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.141865145275714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.141865145275714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.141865145275714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.141865145275714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.141865145275714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.141865145275714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.141865145275714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.13848740372153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.13848740372153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.13848740372153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.13848740372153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.13848740372153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.13848740372153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.13848740372153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.13848740372153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.13848740372153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.13848740372153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.13848740372153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.13848740372153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.13848740372153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.13848740372153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.13848740372153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.13848740372153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.13848740372153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136798532944438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.136798532944438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.136798532944438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.136798532944438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.136798532944438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.136798532944438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.136798532944438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.136798532944438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.136798532944438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.136798532944438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.136798532944438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.136798532944438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.136798532944438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.136798532944438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.136798532944438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.136798532944438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.136798532944438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135109662167346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.135109662167346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.135109662167346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.135109662167346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.135109662167346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.135109662167346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.135109662167346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.135109662167346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.135109662167346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.135109662167346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.135109662167346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135109662167346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.135109662167346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.135109662167346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.135109662167346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.135109662167346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.135109662167346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439500740194106 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439500740194106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439500740194106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439500740194106 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483450814213517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.483450814213517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.483450814213517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.483450814213517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.483450814213517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483450814213517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483450814213517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483450814213517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483450814213517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483450814213517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483450814213517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483450814213517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483450814213517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483450814213517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483450814213517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483450814213517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483450814213517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461475777203812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.461475777203812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.461475777203812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.461475777203812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.461475777203812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.461475777203812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.461475777203812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.461475777203812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.461475777203812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.461475777203812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.461475777203812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461475777203812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.461475777203812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.461475777203812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.461475777203812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.461475777203812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.461475777203812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450488258698959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.450488258698959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.450488258698959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.450488258698959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.450488258698959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.450488258698959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.450488258698959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.450488258698959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.450488258698959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.450488258698959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.450488258698959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450488258698959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.450488258698959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.450488258698959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.450488258698959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.450488258698959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.450488258698959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444994499446533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.444994499446533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.444994499446533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.444994499446533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.444994499446533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.444994499446533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.444994499446533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.444994499446533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444994499446533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444994499446533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444994499446533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444994499446533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444994499446533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444994499446533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444994499446533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444994499446533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444994499446533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439500740194106 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.439500740194106 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.439500740194106 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.439500740194106 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.439500740194106 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439500740194106 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439500740194106 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439500740194106 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439500740194106 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439500740194106 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439500740194106 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439500740194106 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439500740194106 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439500740194106 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439500740194106 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439500740194106 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439500740194106 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0464708477076243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0464708477076243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0464708477076243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0464708477076243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0418237629368619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0418237629368619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0418237629368619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0418237629368619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0418237629368619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0418237629368619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0418237629368619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0418237629368619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0418237629368619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0418237629368619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0418237629368619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0418237629368619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0418237629368619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0418237629368619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0418237629368619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0418237629368619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0418237629368619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441473053222431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0441473053222431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0441473053222431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0441473053222431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0441473053222431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0441473053222431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0441473053222431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0441473053222431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0441473053222431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0441473053222431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0441473053222431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441473053222431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0441473053222431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0441473053222431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0441473053222431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0441473053222431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0441473053222431 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0453090765149337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0453090765149337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0453090765149337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0453090765149337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0453090765149337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0453090765149337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0453090765149337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0453090765149337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0453090765149337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0453090765149337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0453090765149337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0453090765149337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0453090765149337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0453090765149337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0453090765149337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0453090765149337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0453090765149337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.045889962111279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.045889962111279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.045889962111279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.045889962111279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.045889962111279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.045889962111279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.045889962111279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.045889962111279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.045889962111279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.045889962111279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.045889962111279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.045889962111279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.045889962111279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.045889962111279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.045889962111279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.045889962111279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.045889962111279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464708477076243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0464708477076243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0464708477076243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0464708477076243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0464708477076243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0464708477076243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0464708477076243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0464708477076243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0464708477076243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0464708477076243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0464708477076243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0464708477076243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0464708477076243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0464708477076243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0464708477076243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0464708477076243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0464708477076243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.056893438585454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.056893438585454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.056893438585454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.056893438585454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0512040947269086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0512040947269086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0512040947269086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0512040947269086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0512040947269086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0512040947269086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0512040947269086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0512040947269086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0512040947269086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0512040947269086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0512040947269086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0512040947269086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0512040947269086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0512040947269086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0512040947269086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0512040947269086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0512040947269086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0540487666561813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0540487666561813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0540487666561813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0540487666561813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0540487666561813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0540487666561813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0540487666561813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0540487666561813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0540487666561813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0540487666561813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0540487666561813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0540487666561813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0540487666561813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0540487666561813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0540487666561813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0540487666561813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0540487666561813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0554711026208176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0554711026208176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0554711026208176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0554711026208176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0554711026208176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0554711026208176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0554711026208176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0554711026208176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0554711026208176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0554711026208176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0554711026208176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0554711026208176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0554711026208176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0554711026208176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0554711026208176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0554711026208176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0554711026208176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0561822706031358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0561822706031358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0561822706031358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0561822706031358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0561822706031358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0561822706031358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0561822706031358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0561822706031358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0561822706031358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0561822706031358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0561822706031358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0561822706031358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0561822706031358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0561822706031358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0561822706031358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0561822706031358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0561822706031358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056893438585454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.056893438585454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.056893438585454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.056893438585454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.056893438585454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.056893438585454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.056893438585454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.056893438585454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.056893438585454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.056893438585454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.056893438585454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.056893438585454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.056893438585454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.056893438585454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.056893438585454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.056893438585454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.056893438585454 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.246968126097582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.246968126097582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.246968126097582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.246968126097582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.27166493870734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.259316532402461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.253142329250021 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.250055227673801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.246968126097582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.246968126097582 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.84452455582521 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.84452455582521 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.84452455582521 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.84452455582521 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.66007210024269 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.66007210024269 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.66007210024269 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.66007210024269 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.66007210024269 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.66007210024269 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.66007210024269 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.66007210024269 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.66007210024269 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.66007210024269 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.66007210024269 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.66007210024269 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.66007210024269 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.66007210024269 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.66007210024269 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.66007210024269 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.66007210024269 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75229832803395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.75229832803395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.75229832803395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.75229832803395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.75229832803395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.75229832803395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.75229832803395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.75229832803395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.75229832803395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.75229832803395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75229832803395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75229832803395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.75229832803395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75229832803395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.75229832803395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.75229832803395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.75229832803395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.79841144192958 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.79841144192958 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.79841144192958 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.79841144192958 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.79841144192958 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.79841144192958 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.79841144192958 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.79841144192958 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.79841144192958 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.79841144192958 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.79841144192958 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.79841144192958 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.79841144192958 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.79841144192958 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.79841144192958 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.79841144192958 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.79841144192958 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.8214679988774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.8214679988774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.8214679988774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.8214679988774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.8214679988774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.8214679988774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.8214679988774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.8214679988774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.8214679988774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.8214679988774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.8214679988774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.8214679988774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.8214679988774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.8214679988774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.8214679988774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.8214679988774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.8214679988774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84452455582521 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.84452455582521 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.84452455582521 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.84452455582521 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.84452455582521 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.84452455582521 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.84452455582521 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.84452455582521 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.84452455582521 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.84452455582521 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.84452455582521 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.84452455582521 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.84452455582521 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84452455582521 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.84452455582521 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.84452455582521 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.84452455582521 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.38325098021125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.38325098021125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.38325098021125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.38325098021125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.14492588219012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.14492588219012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.14492588219012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.14492588219012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.14492588219012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.14492588219012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.14492588219012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.14492588219012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.14492588219012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.14492588219012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.14492588219012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.14492588219012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.14492588219012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.14492588219012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.14492588219012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.14492588219012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.14492588219012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.26408843120068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.26408843120068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.26408843120068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.26408843120068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.26408843120068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.26408843120068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.26408843120068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.26408843120068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.26408843120068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.26408843120068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.26408843120068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.26408843120068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.26408843120068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.26408843120068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.26408843120068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.26408843120068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.26408843120068 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32366970570596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.32366970570596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.32366970570596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.32366970570596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.32366970570596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.32366970570596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.32366970570596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32366970570596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32366970570596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32366970570596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32366970570596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32366970570596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32366970570596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32366970570596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32366970570596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32366970570596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32366970570596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.35346034295861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.35346034295861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.35346034295861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.35346034295861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.35346034295861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.35346034295861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.35346034295861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.35346034295861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.35346034295861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.35346034295861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.35346034295861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.35346034295861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.35346034295861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.35346034295861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.35346034295861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.35346034295861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.35346034295861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38325098021125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.38325098021125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.38325098021125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.38325098021125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.38325098021125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.38325098021125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.38325098021125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.38325098021125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.38325098021125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.38325098021125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.38325098021125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38325098021125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.38325098021125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38325098021125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.38325098021125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.38325098021125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.38325098021125 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.451606163223465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.451606163223465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.451606163223465 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.451606163223465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406445546901119 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.429025855062292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.440316009142879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445961086183172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.451606163223465 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0991498807100295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0991498807100295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0991498807100295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0991498807100295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0892348926390266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.094192386674528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0966711336922788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0979105072011541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0991498807100295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0316161402386004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0316161402386004 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0316161402386004 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0316161402386004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0284545262147403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0300353332266704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0308257367326354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0312209384856179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0316161402386004 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0316161402386004 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.3828607368897 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.3828607368897 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.3828607368897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.3828607368897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24457466320073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.24457466320073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.24457466320073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.24457466320073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.24457466320073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.24457466320073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.24457466320073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.24457466320073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.24457466320073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.24457466320073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.24457466320073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.24457466320073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24457466320073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.24457466320073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.24457466320073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.24457466320073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.24457466320073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31371770004522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.31371770004522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.31371770004522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.31371770004522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.31371770004522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.31371770004522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.31371770004522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.31371770004522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.31371770004522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.31371770004522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.31371770004522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.31371770004522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31371770004522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.31371770004522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.31371770004522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.31371770004522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.31371770004522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34828921846746 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.34828921846746 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.34828921846746 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.34828921846746 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.34828921846746 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.34828921846746 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34828921846746 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34828921846746 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34828921846746 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34828921846746 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34828921846746 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34828921846746 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34828921846746 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34828921846746 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34828921846746 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34828921846746 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34828921846746 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36557497767858 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.36557497767858 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36557497767858 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36557497767858 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36557497767858 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36557497767858 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.36557497767858 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.36557497767858 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36557497767858 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36557497767858 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36557497767858 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36557497767858 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36557497767858 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36557497767858 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36557497767858 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36557497767858 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.36557497767858 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3828607368897 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.3828607368897 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.3828607368897 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.3828607368897 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.3828607368897 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.3828607368897 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.3828607368897 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.3828607368897 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.3828607368897 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.3828607368897 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.3828607368897 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.3828607368897 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3828607368897 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.3828607368897 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.3828607368897 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.3828607368897 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.3828607368897 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.33656318190659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.33656318190659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.33656318190659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.33656318190659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20290686371593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.20290686371593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.20290686371593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.20290686371593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.20290686371593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.20290686371593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.20290686371593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20290686371593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20290686371593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20290686371593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20290686371593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20290686371593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20290686371593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20290686371593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20290686371593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20290686371593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20290686371593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.26973502281126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.26973502281126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.26973502281126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.26973502281126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.26973502281126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.26973502281126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.26973502281126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.26973502281126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.26973502281126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.26973502281126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.26973502281126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.26973502281126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.26973502281126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.26973502281126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.26973502281126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.26973502281126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.26973502281126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30314910235892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.30314910235892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.30314910235892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.30314910235892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.30314910235892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.30314910235892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.30314910235892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.30314910235892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.30314910235892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.30314910235892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.30314910235892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.30314910235892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30314910235892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.30314910235892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.30314910235892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.30314910235892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.30314910235892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31985614213275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.31985614213275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.31985614213275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.31985614213275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.31985614213275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.31985614213275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.31985614213275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.31985614213275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.31985614213275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.31985614213275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.31985614213275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.31985614213275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31985614213275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.31985614213275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.31985614213275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.31985614213275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.31985614213275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33656318190659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.33656318190659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.33656318190659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.33656318190659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.33656318190659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.33656318190659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.33656318190659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.33656318190659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.33656318190659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.33656318190659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.33656318190659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.33656318190659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33656318190659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.33656318190659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.33656318190659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.33656318190659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.33656318190659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.966582131740566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.966582131740566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.966582131740566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.966582131740566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869923918566509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.869923918566509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.869923918566509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.869923918566509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.869923918566509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.869923918566509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.869923918566509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.869923918566509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.869923918566509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.869923918566509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.869923918566509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.869923918566509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869923918566509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.869923918566509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.869923918566509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.869923918566509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.869923918566509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.918253025153537 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.918253025153537 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.918253025153537 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.918253025153537 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.918253025153537 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.918253025153537 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.918253025153537 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.918253025153537 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.918253025153537 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.918253025153537 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.918253025153537 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.918253025153537 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.918253025153537 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.918253025153537 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.918253025153537 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.918253025153537 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.918253025153537 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.942417578447051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.942417578447051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.942417578447051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.942417578447051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.942417578447051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.942417578447051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.942417578447051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.942417578447051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.942417578447051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.942417578447051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.942417578447051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.942417578447051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.942417578447051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.942417578447051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.942417578447051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.942417578447051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.942417578447051 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.954499855093809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.954499855093809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.954499855093809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.954499855093809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.954499855093809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.954499855093809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.954499855093809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.954499855093809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.954499855093809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.954499855093809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.954499855093809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.954499855093809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.954499855093809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.954499855093809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.954499855093809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.954499855093809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.954499855093809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966582131740566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.966582131740566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.966582131740566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.966582131740566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.966582131740566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.966582131740566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.966582131740566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.966582131740566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.966582131740566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.966582131740566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.966582131740566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.966582131740566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.966582131740566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.966582131740566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.966582131740566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.966582131740566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.966582131740566 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.246717936906411 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.246717936906411 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.246717936906411 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.246717936906411 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.22204614321577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.22204614321577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.22204614321577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.22204614321577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.22204614321577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.22204614321577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.22204614321577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.22204614321577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.22204614321577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.22204614321577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.22204614321577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.22204614321577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.22204614321577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.22204614321577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.22204614321577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.22204614321577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.22204614321577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234382040061091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.234382040061091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.234382040061091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.234382040061091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.234382040061091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.234382040061091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.234382040061091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.234382040061091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.234382040061091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.234382040061091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.234382040061091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234382040061091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.234382040061091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.234382040061091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.234382040061091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.234382040061091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.234382040061091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.240549988483751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.240549988483751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.240549988483751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.240549988483751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.240549988483751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.240549988483751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.240549988483751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.240549988483751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.240549988483751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.240549988483751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.240549988483751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.240549988483751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.240549988483751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.240549988483751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.240549988483751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.240549988483751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.240549988483751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243633962695081 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243633962695081 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243633962695081 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243633962695081 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243633962695081 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243633962695081 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243633962695081 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243633962695081 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243633962695081 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243633962695081 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243633962695081 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243633962695081 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243633962695081 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243633962695081 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.243633962695081 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.243633962695081 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.243633962695081 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246717936906411 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.246717936906411 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.246717936906411 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.246717936906411 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.246717936906411 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.246717936906411 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.246717936906411 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.246717936906411 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.246717936906411 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.246717936906411 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.246717936906411 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246717936906411 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.246717936906411 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.246717936906411 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.246717936906411 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.246717936906411 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.246717936906411 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.166895371725052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.166895371725052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.166895371725052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.166895371725052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150205834552547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.150205834552547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.150205834552547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.150205834552547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.150205834552547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.150205834552547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.150205834552547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.150205834552547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.150205834552547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.150205834552547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.150205834552547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150205834552547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.150205834552547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.150205834552547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.150205834552547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.150205834552547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.150205834552547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158550603138799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.158550603138799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.158550603138799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.158550603138799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.158550603138799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.158550603138799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.158550603138799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.158550603138799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158550603138799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158550603138799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158550603138799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158550603138799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158550603138799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158550603138799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158550603138799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158550603138799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158550603138799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162722987431925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162722987431925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162722987431925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162722987431925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162722987431925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162722987431925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162722987431925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162722987431925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162722987431925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162722987431925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162722987431925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162722987431925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162722987431925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162722987431925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162722987431925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162722987431925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.162722987431925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.164809179578489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.164809179578489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.164809179578489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.164809179578489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.164809179578489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.164809179578489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.164809179578489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.164809179578489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.164809179578489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.164809179578489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.164809179578489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.164809179578489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.164809179578489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.164809179578489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.164809179578489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.164809179578489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.164809179578489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166895371725052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.166895371725052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.166895371725052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.166895371725052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.166895371725052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.166895371725052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.166895371725052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.166895371725052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166895371725052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166895371725052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166895371725052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166895371725052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166895371725052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166895371725052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166895371725052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.166895371725052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.166895371725052 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.215300394699696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.215300394699696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.215300394699696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.215300394699696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193770355229727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.193770355229727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.193770355229727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.193770355229727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.193770355229727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.193770355229727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.193770355229727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.193770355229727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.193770355229727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.193770355229727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.193770355229727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193770355229727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.193770355229727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.193770355229727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.193770355229727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.193770355229727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.193770355229727 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204535374964712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.204535374964712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.204535374964712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.204535374964712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.204535374964712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.204535374964712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.204535374964712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.204535374964712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.204535374964712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.204535374964712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.204535374964712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204535374964712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.204535374964712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.204535374964712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.204535374964712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.204535374964712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.204535374964712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209917884832204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.209917884832204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.209917884832204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.209917884832204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.209917884832204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.209917884832204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.209917884832204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.209917884832204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.209917884832204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.209917884832204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.209917884832204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209917884832204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.209917884832204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.209917884832204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.209917884832204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.209917884832204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.209917884832204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.21260913976595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.21260913976595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.21260913976595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.21260913976595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.21260913976595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.21260913976595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.21260913976595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.21260913976595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.21260913976595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.21260913976595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.21260913976595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.21260913976595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.21260913976595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.21260913976595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.21260913976595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.21260913976595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.21260913976595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215300394699696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.215300394699696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.215300394699696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.215300394699696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.215300394699696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.215300394699696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.215300394699696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.215300394699696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.215300394699696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.215300394699696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.215300394699696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215300394699696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.215300394699696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.215300394699696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.215300394699696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.215300394699696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.215300394699696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0192817361578181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0192817361578181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0192817361578181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0192817361578181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0173535625420363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0173535625420363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0173535625420363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0173535625420363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0173535625420363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0173535625420363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0173535625420363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0173535625420363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0173535625420363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0173535625420363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0173535625420363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0173535625420363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0173535625420363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0173535625420363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0173535625420363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0173535625420363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0173535625420363 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0183176493499272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0183176493499272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0183176493499272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0183176493499272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0183176493499272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0183176493499272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0183176493499272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0183176493499272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0183176493499272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0183176493499272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0183176493499272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0183176493499272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0183176493499272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0183176493499272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0183176493499272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0183176493499272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0183176493499272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0187996927538726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0187996927538726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0187996927538726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0187996927538726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0187996927538726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0187996927538726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0187996927538726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0187996927538726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0187996927538726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0187996927538726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0187996927538726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0187996927538726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0187996927538726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0187996927538726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0187996927538726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0187996927538726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0187996927538726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0190407144558454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0190407144558454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0190407144558454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0190407144558454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0190407144558454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0190407144558454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0190407144558454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0190407144558454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0190407144558454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0190407144558454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0190407144558454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0190407144558454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0190407144558454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0190407144558454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0190407144558454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0190407144558454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0190407144558454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0192817361578181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0192817361578181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0192817361578181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0192817361578181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0192817361578181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0192817361578181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0192817361578181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0192817361578181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0192817361578181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0192817361578181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0192817361578181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0192817361578181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0192817361578181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0192817361578181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0192817361578181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0192817361578181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0192817361578181 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.72794001889171 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.72794001889171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.72794001889171 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.72794001889171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.90073402078088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.90073402078088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.90073402078088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.90073402078088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.90073402078088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.90073402078088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.90073402078088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.90073402078088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.90073402078088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.90073402078088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.90073402078088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.90073402078088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.90073402078088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.90073402078088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.90073402078088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.90073402078088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.90073402078088 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.81433701983629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.81433701983629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.81433701983629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.81433701983629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.81433701983629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.81433701983629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.81433701983629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.81433701983629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.81433701983629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.81433701983629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.81433701983629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.81433701983629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.81433701983629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.81433701983629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.81433701983629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.81433701983629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.81433701983629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.771138519364 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.771138519364 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.771138519364 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.771138519364 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.771138519364 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.771138519364 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.771138519364 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.771138519364 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.771138519364 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.771138519364 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.771138519364 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.771138519364 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.771138519364 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.771138519364 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.771138519364 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.771138519364 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.771138519364 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.74953926912785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.74953926912785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.74953926912785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.74953926912785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.74953926912785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.74953926912785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.74953926912785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.74953926912785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.74953926912785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.74953926912785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.74953926912785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.74953926912785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.74953926912785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.74953926912785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.74953926912785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.74953926912785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.74953926912785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.72794001889171 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.72794001889171 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.72794001889171 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.72794001889171 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.72794001889171 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.72794001889171 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.72794001889171 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.72794001889171 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.72794001889171 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.72794001889171 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.72794001889171 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.72794001889171 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.72794001889171 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.72794001889171 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.72794001889171 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.72794001889171 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.72794001889171 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.40064749062923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.40064749062923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.40064749062923 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.40064749062923 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.64071223969215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.64071223969215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.64071223969215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.64071223969215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.64071223969215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.64071223969215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.64071223969215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.64071223969215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.64071223969215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.64071223969215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.64071223969215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.64071223969215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.64071223969215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.64071223969215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.64071223969215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.64071223969215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.64071223969215 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.52067986516069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.52067986516069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.52067986516069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.52067986516069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.52067986516069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.52067986516069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.52067986516069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.52067986516069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.52067986516069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.52067986516069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.52067986516069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.52067986516069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.52067986516069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.52067986516069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.52067986516069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.52067986516069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.52067986516069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46066367789496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.46066367789496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.46066367789496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.46066367789496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.46066367789496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.46066367789496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.46066367789496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.46066367789496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.46066367789496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46066367789496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.46066367789496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.46066367789496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.46066367789496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.46066367789496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.46066367789496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.46066367789496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.46066367789496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.43065558426209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.43065558426209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.43065558426209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.43065558426209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.43065558426209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.43065558426209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.43065558426209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.43065558426209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.43065558426209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.43065558426209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.43065558426209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.43065558426209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.43065558426209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.43065558426209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.43065558426209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.43065558426209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.43065558426209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40064749062923 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.40064749062923 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.40064749062923 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.40064749062923 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.40064749062923 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.40064749062923 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.40064749062923 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.40064749062923 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.40064749062923 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40064749062923 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.40064749062923 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.40064749062923 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.40064749062923 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.40064749062923 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.40064749062923 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.40064749062923 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.40064749062923 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0779658802845055 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0779658802845055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0779658802845055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0779658802845055 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0857624683129561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0818641742987308 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0799150272916182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0789404537880618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0779658802845055 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0779658802845055 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.03038969426729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.03038969426729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.03038969426729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.03038969426729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72735072484056 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.72735072484056 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.72735072484056 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.72735072484056 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.72735072484056 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.72735072484056 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.72735072484056 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.72735072484056 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.72735072484056 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.72735072484056 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.72735072484056 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.72735072484056 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.72735072484056 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.72735072484056 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.72735072484056 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.72735072484056 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.72735072484056 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.87887020955392 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.87887020955392 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.87887020955392 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.87887020955392 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.87887020955392 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.87887020955392 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.87887020955392 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.87887020955392 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.87887020955392 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.87887020955392 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.87887020955392 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.87887020955392 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87887020955392 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.87887020955392 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.87887020955392 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.87887020955392 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.87887020955392 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.9546299519106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.9546299519106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.9546299519106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.9546299519106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.9546299519106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.9546299519106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.9546299519106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.9546299519106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.9546299519106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.9546299519106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.9546299519106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.9546299519106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.9546299519106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.9546299519106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.9546299519106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.9546299519106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.9546299519106 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.99250982308895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.99250982308895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.99250982308895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.99250982308895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.99250982308895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.99250982308895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.99250982308895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.99250982308895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.99250982308895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.99250982308895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.99250982308895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99250982308895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99250982308895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.99250982308895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.99250982308895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.99250982308895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.99250982308895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03038969426729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.03038969426729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.03038969426729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.03038969426729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.03038969426729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.03038969426729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.03038969426729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.03038969426729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.03038969426729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.03038969426729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.03038969426729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.03038969426729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.03038969426729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.03038969426729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03038969426729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.03038969426729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.03038969426729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.88332945911601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.88332945911601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.88332945911601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.88332945911601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59499651320441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.59499651320441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.59499651320441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.59499651320441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.59499651320441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.59499651320441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.59499651320441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.59499651320441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59499651320441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59499651320441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59499651320441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59499651320441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59499651320441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59499651320441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59499651320441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59499651320441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59499651320441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.73916298616021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.73916298616021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.73916298616021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.73916298616021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.73916298616021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.73916298616021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.73916298616021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.73916298616021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.73916298616021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.73916298616021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.73916298616021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.73916298616021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.73916298616021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.73916298616021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.73916298616021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.73916298616021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.73916298616021 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.81124622263811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.81124622263811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.81124622263811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.81124622263811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.81124622263811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.81124622263811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.81124622263811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.81124622263811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.81124622263811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.81124622263811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.81124622263811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.81124622263811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.81124622263811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.81124622263811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.81124622263811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.81124622263811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.81124622263811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.84728784087706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.84728784087706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.84728784087706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.84728784087706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.84728784087706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.84728784087706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.84728784087706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.84728784087706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.84728784087706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.84728784087706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.84728784087706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.84728784087706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.84728784087706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.84728784087706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.84728784087706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.84728784087706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.84728784087706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88332945911601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.88332945911601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.88332945911601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.88332945911601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.88332945911601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.88332945911601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.88332945911601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.88332945911601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.88332945911601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.88332945911601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.88332945911601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.88332945911601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.88332945911601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.88332945911601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88332945911601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.88332945911601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.88332945911601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.89108957502779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.89108957502779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.89108957502779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.89108957502779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.60198061752501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.60198061752501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.60198061752501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.60198061752501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.60198061752501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.60198061752501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.60198061752501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.60198061752501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.60198061752501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.60198061752501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.60198061752501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.60198061752501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.60198061752501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.60198061752501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.60198061752501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.60198061752501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.60198061752501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7465350962764 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.7465350962764 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.7465350962764 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.7465350962764 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.7465350962764 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.7465350962764 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.7465350962764 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.7465350962764 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.7465350962764 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.7465350962764 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.7465350962764 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.7465350962764 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.7465350962764 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.7465350962764 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7465350962764 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.7465350962764 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.7465350962764 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.81881233565209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.81881233565209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.81881233565209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.81881233565209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.81881233565209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.81881233565209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.81881233565209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.81881233565209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.81881233565209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.81881233565209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.81881233565209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.81881233565209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.81881233565209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.81881233565209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.81881233565209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.81881233565209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.81881233565209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.85495095533994 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.85495095533994 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.85495095533994 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.85495095533994 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.85495095533994 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.85495095533994 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.85495095533994 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.85495095533994 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.85495095533994 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.85495095533994 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.85495095533994 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85495095533994 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.85495095533994 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.85495095533994 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.85495095533994 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.85495095533994 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.85495095533994 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89108957502779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.89108957502779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.89108957502779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.89108957502779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.89108957502779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.89108957502779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.89108957502779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.89108957502779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.89108957502779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.89108957502779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.89108957502779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.89108957502779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.89108957502779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.89108957502779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.89108957502779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.89108957502779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.89108957502779 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.99505444145313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.99505444145313 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.99505444145313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.99505444145313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.59554899730781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.59554899730781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.59554899730781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.59554899730781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.59554899730781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.59554899730781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.59554899730781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.59554899730781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.59554899730781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.59554899730781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.59554899730781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.59554899730781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.59554899730781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.59554899730781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.59554899730781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.59554899730781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.59554899730781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.59554899730781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.79530171938047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.79530171938047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.79530171938047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.79530171938047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.79530171938047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.79530171938047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.79530171938047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.79530171938047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.79530171938047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.79530171938047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.79530171938047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.79530171938047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.79530171938047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.79530171938047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.79530171938047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.79530171938047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.79530171938047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.79530171938047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8951780804168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8951780804168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.8951780804168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.8951780804168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.8951780804168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.8951780804168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8951780804168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8951780804168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8951780804168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8951780804168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8951780804168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8951780804168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8951780804168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8951780804168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8951780804168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8951780804168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8951780804168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8951780804168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.94511626093496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.94511626093496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.94511626093496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.94511626093496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.94511626093496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.94511626093496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.94511626093496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.94511626093496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.94511626093496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.94511626093496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.94511626093496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.94511626093496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.94511626093496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.94511626093496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.94511626093496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.94511626093496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.94511626093496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.94511626093496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99505444145313 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99505444145313 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.99505444145313 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.99505444145313 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.99505444145313 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.99505444145313 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.99505444145313 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.99505444145313 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.99505444145313 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.99505444145313 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.99505444145313 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.99505444145313 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.99505444145313 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.99505444145313 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.99505444145313 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.99505444145313 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.99505444145313 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.99505444145313 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.38206220961632 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.38206220961632 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.38206220961632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.38206220961632 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.04385598865469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.04385598865469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.04385598865469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.04385598865469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.04385598865469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.04385598865469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.04385598865469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.04385598865469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.04385598865469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.04385598865469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.04385598865469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.04385598865469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.04385598865469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.04385598865469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.04385598865469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.04385598865469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.04385598865469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21295909913551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.21295909913551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.21295909913551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.21295909913551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.21295909913551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.21295909913551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.21295909913551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.21295909913551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.21295909913551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.21295909913551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.21295909913551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.21295909913551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.21295909913551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.21295909913551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21295909913551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.21295909913551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.21295909913551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.29751065437592 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.29751065437592 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.29751065437592 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.29751065437592 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.29751065437592 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.29751065437592 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.29751065437592 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.29751065437592 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.29751065437592 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.29751065437592 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29751065437592 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29751065437592 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29751065437592 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.29751065437592 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.29751065437592 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.29751065437592 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.29751065437592 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33978643199612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33978643199612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33978643199612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33978643199612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33978643199612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33978643199612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33978643199612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33978643199612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33978643199612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33978643199612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33978643199612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33978643199612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33978643199612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33978643199612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33978643199612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.33978643199612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.33978643199612 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38206220961632 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38206220961632 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38206220961632 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38206220961632 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38206220961632 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38206220961632 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38206220961632 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38206220961632 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38206220961632 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38206220961632 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38206220961632 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38206220961632 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38206220961632 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38206220961632 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38206220961632 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.38206220961632 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.38206220961632 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.94849575298199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.94849575298199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.94849575298199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.94849575298199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.14334532828019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.14334532828019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.14334532828019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.14334532828019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.14334532828019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.14334532828019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.14334532828019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.14334532828019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.14334532828019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.14334532828019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14334532828019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14334532828019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14334532828019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.14334532828019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.14334532828019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.14334532828019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.14334532828019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.04592054063109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.04592054063109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.04592054063109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.04592054063109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.04592054063109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.04592054063109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.04592054063109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.04592054063109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.04592054063109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.04592054063109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.04592054063109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.04592054063109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.04592054063109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.04592054063109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.04592054063109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.04592054063109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.04592054063109 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.99720814680654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.99720814680654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.99720814680654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.99720814680654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.99720814680654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.99720814680654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.99720814680654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.99720814680654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.99720814680654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.99720814680654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.99720814680654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.99720814680654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.99720814680654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.99720814680654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.99720814680654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.99720814680654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.99720814680654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97285194989427 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97285194989427 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97285194989427 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97285194989427 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97285194989427 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97285194989427 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97285194989427 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97285194989427 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97285194989427 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97285194989427 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97285194989427 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97285194989427 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97285194989427 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97285194989427 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97285194989427 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.97285194989427 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.97285194989427 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94849575298199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.94849575298199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.94849575298199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.94849575298199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.94849575298199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.94849575298199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.94849575298199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.94849575298199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.94849575298199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94849575298199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.94849575298199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.94849575298199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.94849575298199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.94849575298199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.94849575298199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.94849575298199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.94849575298199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.80107466312953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.80107466312953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.80107466312953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.80107466312953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98118212944248 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.98118212944248 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.98118212944248 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.98118212944248 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.98118212944248 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.98118212944248 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.98118212944248 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.98118212944248 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.98118212944248 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98118212944248 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.98118212944248 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.98118212944248 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.98118212944248 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.98118212944248 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.98118212944248 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.98118212944248 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.98118212944248 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.891128396286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.891128396286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.891128396286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.891128396286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.891128396286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.891128396286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.891128396286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.891128396286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.891128396286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.891128396286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.891128396286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.891128396286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.891128396286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.891128396286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.891128396286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.891128396286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.891128396286 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.84610152970777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.84610152970777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.84610152970777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.84610152970777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.84610152970777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.84610152970777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.84610152970777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.84610152970777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.84610152970777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.84610152970777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.84610152970777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.84610152970777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.84610152970777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.84610152970777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.84610152970777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.84610152970777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.84610152970777 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.82358809641865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.82358809641865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.82358809641865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.82358809641865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.82358809641865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.82358809641865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.82358809641865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.82358809641865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.82358809641865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.82358809641865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.82358809641865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.82358809641865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.82358809641865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.82358809641865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.82358809641865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.82358809641865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.82358809641865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.80107466312953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.80107466312953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.80107466312953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.80107466312953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.80107466312953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.80107466312953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.80107466312953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.80107466312953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.80107466312953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.80107466312953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.80107466312953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.80107466312953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.80107466312953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.80107466312953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.80107466312953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.80107466312953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.80107466312953 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.204022703432999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.204022703432999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.204022703432999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.204022703432999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.183620433089699 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.193821568261349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.198922135847174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.201472419640087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.204022703432999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.468252573242434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.468252573242434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.468252573242434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.468252573242434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.42142731591819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.444839944580312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.456546258911373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.462399416076903 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.468252573242434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.468252573242434 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.332714086050712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.332714086050712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.332714086050712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.332714086050712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.299442677445641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.316078381748176 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.324396233899444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.328555159975078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.332714086050712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.197853053842346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.197853053842346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.197853053842346 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.197853053842346 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21763835922658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207745706534463 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.202799380188404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200326217015375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.197853053842346 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.397946181103193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.397946181103193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.397946181103193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.397946181103193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.358151562992873 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.378048872048033 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387997526575613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.392971853839403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.397946181103193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.397946181103193 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.046708361382166 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.046708361382166 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.046708361382166 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.046708361382166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0513791975203826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0513791975203826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0513791975203826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0513791975203826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0513791975203826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0513791975203826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0513791975203826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0513791975203826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0513791975203826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0513791975203826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0513791975203826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0513791975203826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0513791975203826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0513791975203826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0513791975203826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0513791975203826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0513791975203826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0513791975203826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0490437794512743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0490437794512743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0490437794512743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0490437794512743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0490437794512743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0490437794512743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0490437794512743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0490437794512743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0490437794512743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0490437794512743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0490437794512743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0490437794512743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0490437794512743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0490437794512743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0490437794512743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0490437794512743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0490437794512743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0490437794512743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0478760704167201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0478760704167201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0478760704167201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0478760704167201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0478760704167201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0478760704167201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0478760704167201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0478760704167201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0478760704167201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0478760704167201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0478760704167201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0478760704167201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0478760704167201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0478760704167201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0478760704167201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0478760704167201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0478760704167201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0478760704167201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0472922158994431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0472922158994431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0472922158994431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0472922158994431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0472922158994431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0472922158994431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0472922158994431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0472922158994431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0472922158994431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0472922158994431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0472922158994431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0472922158994431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0472922158994431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0472922158994431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0472922158994431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0472922158994431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0472922158994431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0472922158994431 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.046708361382166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.046708361382166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.046708361382166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.046708361382166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.046708361382166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.046708361382166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.046708361382166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.046708361382166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.046708361382166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.046708361382166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.046708361382166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.046708361382166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.046708361382166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.046708361382166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.046708361382166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.046708361382166 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.192546933326066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.192546933326066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.192546933326066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.192546933326066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173292239993459 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173292239993459 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.173292239993459 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.173292239993459 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.173292239993459 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.173292239993459 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.173292239993459 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.173292239993459 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.173292239993459 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.173292239993459 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.173292239993459 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.173292239993459 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173292239993459 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.173292239993459 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.173292239993459 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.173292239993459 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.173292239993459 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.173292239993459 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182919586659762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182919586659762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182919586659762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182919586659762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182919586659762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182919586659762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182919586659762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182919586659762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182919586659762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182919586659762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182919586659762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182919586659762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182919586659762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182919586659762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182919586659762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182919586659762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.182919586659762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.182919586659762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.187733259992914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.187733259992914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.187733259992914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.187733259992914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.187733259992914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.187733259992914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.187733259992914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.187733259992914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.187733259992914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.187733259992914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.187733259992914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.187733259992914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.187733259992914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.187733259992914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.187733259992914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.187733259992914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.187733259992914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.187733259992914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19014009665949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19014009665949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.19014009665949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.19014009665949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.19014009665949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.19014009665949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.19014009665949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.19014009665949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.19014009665949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.19014009665949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.19014009665949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.19014009665949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19014009665949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.19014009665949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.19014009665949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.19014009665949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.19014009665949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.19014009665949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.192546933326066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.192546933326066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.192546933326066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.192546933326066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.192546933326066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.192546933326066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.192546933326066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.192546933326066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.192546933326066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.192546933326066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192546933326066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.192546933326066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.192546933326066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.192546933326066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.192546933326066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.192546933326066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.079834002238458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.079834002238458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.079834002238458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.079834002238458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0878174024623039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0878174024623039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0878174024623039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0878174024623039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0878174024623039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0878174024623039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0878174024623039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0878174024623039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0878174024623039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0878174024623039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0878174024623039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0878174024623039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0878174024623039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0878174024623039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0878174024623039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0878174024623039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0878174024623039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0878174024623039 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0838257023503809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0838257023503809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0838257023503809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0838257023503809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0838257023503809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0838257023503809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0838257023503809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0838257023503809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0838257023503809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0838257023503809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0838257023503809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0838257023503809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0838257023503809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0838257023503809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0838257023503809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0838257023503809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0838257023503809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0838257023503809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0818298522944195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0818298522944195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0818298522944195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0818298522944195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0818298522944195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0818298522944195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0818298522944195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0818298522944195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0818298522944195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0818298522944195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0818298522944195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0818298522944195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0818298522944195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0818298522944195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0818298522944195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0818298522944195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0818298522944195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0818298522944195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0808319272664388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0808319272664388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0808319272664388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0808319272664388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0808319272664388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0808319272664388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0808319272664388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0808319272664388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0808319272664388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0808319272664388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0808319272664388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0808319272664388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0808319272664388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0808319272664388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0808319272664388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0808319272664388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0808319272664388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0808319272664388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.079834002238458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.079834002238458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.079834002238458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.079834002238458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.079834002238458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.079834002238458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.079834002238458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.079834002238458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.079834002238458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.079834002238458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.079834002238458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.079834002238458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.079834002238458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.079834002238458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.079834002238458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.079834002238458 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28939713441328 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28939713441328 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28939713441328 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28939713441328 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.06045742097195 -8.86380949014544e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.17492727769261 -3.80068779515352e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23216220605295 -1.26912694765756e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.26077967023311 -3.34652390957964e-08"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28939713441328 -8.73769234355158e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28939713441328 -8.73769234355158e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.387224307061924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.387224307061924 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.387224307061924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.387224307061924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.425946737768116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.40658552241502 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.396904914738472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.392064610900198 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.387224307061924 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0681066072248506 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0681066072248506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0681066072248506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0681066072248506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0612959465023656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0647012768636081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0664039420442294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.06725527463454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0681066072248506 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0681066072248506 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.344572227598809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.344572227598809 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.344572227598809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.344572227598809 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310115004838928 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310115004838928 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.310115004838928 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.310115004838928 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.310115004838928 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.310115004838928 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.310115004838928 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.310115004838928 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.310115004838928 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.310115004838928 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.310115004838928 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.310115004838928 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310115004838928 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.310115004838928 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.310115004838928 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.310115004838928 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.310115004838928 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.310115004838928 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327343616218868 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327343616218868 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.327343616218868 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.327343616218868 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.327343616218868 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.327343616218868 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327343616218868 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327343616218868 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327343616218868 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327343616218868 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327343616218868 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327343616218868 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327343616218868 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327343616218868 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327343616218868 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327343616218868 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327343616218868 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327343616218868 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.335957921908839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.335957921908839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.335957921908839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.335957921908839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.335957921908839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.335957921908839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.335957921908839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.335957921908839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.335957921908839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.335957921908839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.335957921908839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.335957921908839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.335957921908839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.335957921908839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.335957921908839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.335957921908839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.335957921908839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.335957921908839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340265074753824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340265074753824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.340265074753824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.340265074753824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.340265074753824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.340265074753824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.340265074753824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.340265074753824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.340265074753824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.340265074753824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.340265074753824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.340265074753824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340265074753824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.340265074753824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.340265074753824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.340265074753824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.340265074753824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.340265074753824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.344572227598809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.344572227598809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.344572227598809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.344572227598809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.344572227598809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.344572227598809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.344572227598809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.344572227598809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.344572227598809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.344572227598809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344572227598809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.344572227598809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.344572227598809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.344572227598809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.344572227598809 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.344572227598809 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186437927738473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186437927738473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186437927738473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186437927738473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.20508172051232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.20508172051232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.20508172051232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.20508172051232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.20508172051232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.20508172051232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.20508172051232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.20508172051232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.20508172051232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.20508172051232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.20508172051232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.20508172051232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.20508172051232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.20508172051232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.20508172051232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.20508172051232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.20508172051232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.195759824125396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.195759824125396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.195759824125396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.195759824125396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.195759824125396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.195759824125396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.195759824125396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.195759824125396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.195759824125396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.195759824125396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.195759824125396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.195759824125396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.195759824125396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.195759824125396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.195759824125396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.195759824125396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.195759824125396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191098875931935 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.191098875931935 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.191098875931935 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.191098875931935 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.191098875931935 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.191098875931935 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.191098875931935 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.191098875931935 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191098875931935 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191098875931935 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191098875931935 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191098875931935 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191098875931935 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191098875931935 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191098875931935 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191098875931935 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191098875931935 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188768401835204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.188768401835204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.188768401835204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.188768401835204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.188768401835204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.188768401835204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.188768401835204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.188768401835204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.188768401835204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.188768401835204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.188768401835204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188768401835204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.188768401835204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.188768401835204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.188768401835204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.188768401835204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.188768401835204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186437927738473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.186437927738473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.186437927738473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.186437927738473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.186437927738473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.186437927738473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.186437927738473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186437927738473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186437927738473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186437927738473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186437927738473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186437927738473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186437927738473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186437927738473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186437927738473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186437927738473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186437927738473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.314520980653834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.314520980653834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.314520980653834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.314520980653834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.283068882588451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.283068882588451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.283068882588451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.283068882588451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.283068882588451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.283068882588451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.283068882588451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.283068882588451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.283068882588451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.283068882588451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.283068882588451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.283068882588451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.283068882588451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.283068882588451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.283068882588451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.283068882588451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.283068882588451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.298794931621143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.298794931621143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.298794931621143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.298794931621143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.298794931621143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.298794931621143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.298794931621143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.298794931621143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.298794931621143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.298794931621143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.298794931621143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.298794931621143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.298794931621143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.298794931621143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.298794931621143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.298794931621143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.298794931621143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306657956137489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.306657956137489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.306657956137489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.306657956137489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.306657956137489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.306657956137489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.306657956137489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.306657956137489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.306657956137489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.306657956137489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.306657956137489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306657956137489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.306657956137489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.306657956137489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.306657956137489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.306657956137489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.306657956137489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310589468395662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.310589468395662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.310589468395662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.310589468395662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.310589468395662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.310589468395662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.310589468395662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.310589468395662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.310589468395662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.310589468395662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.310589468395662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310589468395662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.310589468395662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.310589468395662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.310589468395662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.310589468395662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.310589468395662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314520980653834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.314520980653834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.314520980653834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.314520980653834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314520980653834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314520980653834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314520980653834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314520980653834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314520980653834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314520980653834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314520980653834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314520980653834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314520980653834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314520980653834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314520980653834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.314520980653834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.314520980653834 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45025168182316 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45025168182316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45025168182316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45025168182316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.405226513640844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.427739097732002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.438995389777581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.444623535800371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45025168182316 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45025168182316 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.258070916326641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.258070916326641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.258070916326641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.258070916326641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232263824693977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.232263824693977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.232263824693977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.232263824693977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.232263824693977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.232263824693977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.232263824693977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.232263824693977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.232263824693977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.232263824693977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.232263824693977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232263824693977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.232263824693977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.232263824693977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.232263824693977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.232263824693977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.232263824693977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.245167370510309 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.245167370510309 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.245167370510309 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.245167370510309 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.245167370510309 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.245167370510309 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.245167370510309 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.245167370510309 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.245167370510309 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.245167370510309 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.245167370510309 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.245167370510309 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.245167370510309 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.245167370510309 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.245167370510309 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.245167370510309 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.245167370510309 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.251619143418475 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.251619143418475 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.251619143418475 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.251619143418475 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.251619143418475 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.251619143418475 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.251619143418475 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.251619143418475 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.251619143418475 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.251619143418475 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.251619143418475 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.251619143418475 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.251619143418475 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.251619143418475 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.251619143418475 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.251619143418475 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.251619143418475 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.254845029872558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.254845029872558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.254845029872558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.254845029872558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.254845029872558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.254845029872558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.254845029872558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.254845029872558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.254845029872558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.254845029872558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.254845029872558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.254845029872558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.254845029872558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.254845029872558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.254845029872558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.254845029872558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.254845029872558 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258070916326641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.258070916326641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.258070916326641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.258070916326641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.258070916326641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.258070916326641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.258070916326641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.258070916326641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.258070916326641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.258070916326641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.258070916326641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258070916326641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.258070916326641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.258070916326641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.258070916326641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.258070916326641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.258070916326641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.104817526464899 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.104817526464899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.104817526464899 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.104817526464899 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0943357738184087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0943357738184087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0943357738184087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0943357738184087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0943357738184087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0943357738184087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0943357738184087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0943357738184087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0943357738184087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0943357738184087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0943357738184087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0943357738184087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0943357738184087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0943357738184087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0943357738184087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0943357738184087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0943357738184087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0995766501416536 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0995766501416536 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0995766501416536 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0995766501416536 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0995766501416536 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0995766501416536 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0995766501416536 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0995766501416536 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0995766501416536 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0995766501416536 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0995766501416536 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0995766501416536 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0995766501416536 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0995766501416536 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0995766501416536 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0995766501416536 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0995766501416536 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102197088303276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102197088303276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102197088303276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102197088303276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102197088303276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102197088303276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102197088303276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102197088303276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102197088303276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102197088303276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102197088303276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102197088303276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102197088303276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102197088303276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102197088303276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.102197088303276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.102197088303276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103507307384087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.103507307384087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.103507307384087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.103507307384087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.103507307384087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.103507307384087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.103507307384087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.103507307384087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.103507307384087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.103507307384087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.103507307384087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103507307384087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.103507307384087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.103507307384087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.103507307384087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.103507307384087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.103507307384087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.104817526464899 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.104817526464899 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.104817526464899 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.104817526464899 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.104817526464899 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.104817526464899 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.104817526464899 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.104817526464899 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.104817526464899 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.104817526464899 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.104817526464899 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.104817526464899 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.104817526464899 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.104817526464899 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.104817526464899 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.104817526464899 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.104817526464899 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.84470516380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.84470516380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.84470516380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.84470516380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760234647427668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760234647427668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.760234647427668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.760234647427668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.760234647427668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.760234647427668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.760234647427668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.760234647427668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.760234647427668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.760234647427668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.760234647427668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.760234647427668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.760234647427668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760234647427668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.760234647427668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.760234647427668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.760234647427668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.760234647427668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.802469905618094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.802469905618094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.802469905618094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.802469905618094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.802469905618094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.802469905618094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.802469905618094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.802469905618094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.802469905618094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.802469905618094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.802469905618094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.802469905618094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.802469905618094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.802469905618094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.802469905618094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.802469905618094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.802469905618094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.802469905618094 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.823587534713307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.823587534713307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.823587534713307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.823587534713307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.823587534713307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.823587534713307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.823587534713307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.823587534713307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.823587534713307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.823587534713307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.823587534713307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.823587534713307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.823587534713307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.823587534713307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.823587534713307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.823587534713307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.823587534713307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.823587534713307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.834146349260914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.834146349260914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.834146349260914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.834146349260914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.834146349260914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.834146349260914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.834146349260914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.834146349260914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.834146349260914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.834146349260914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.834146349260914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.834146349260914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.834146349260914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.834146349260914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.834146349260914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.834146349260914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.834146349260914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.834146349260914 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.84470516380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.84470516380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.84470516380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.84470516380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.84470516380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.84470516380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.84470516380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.84470516380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.84470516380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.84470516380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.84470516380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84470516380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.84470516380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.84470516380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.84470516380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.84470516380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0412951134398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0412951134398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0412951134398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0412951134398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.937165602095822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.937165602095822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.937165602095822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.937165602095822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.937165602095822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.937165602095822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.937165602095822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.937165602095822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.937165602095822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.937165602095822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.937165602095822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.937165602095822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.937165602095822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.937165602095822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.937165602095822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.937165602095822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.937165602095822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.937165602095822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.989230357767812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.989230357767812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.989230357767812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.989230357767812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.989230357767812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.989230357767812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.989230357767812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.989230357767812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.989230357767812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.989230357767812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.989230357767812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.989230357767812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.989230357767812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.989230357767812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.989230357767812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.989230357767812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.989230357767812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.989230357767812 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01526273560381 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01526273560381 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.01526273560381 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.01526273560381 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.01526273560381 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.01526273560381 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.01526273560381 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.01526273560381 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01526273560381 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01526273560381 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01526273560381 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01526273560381 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01526273560381 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01526273560381 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01526273560381 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01526273560381 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01526273560381 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01526273560381 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0282789245218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0282789245218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.0282789245218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.0282789245218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.0282789245218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.0282789245218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.0282789245218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.0282789245218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0282789245218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0282789245218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0282789245218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0282789245218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0282789245218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0282789245218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0282789245218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0282789245218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0282789245218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0282789245218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.0412951134398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.0412951134398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.0412951134398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.0412951134398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.0412951134398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.0412951134398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0412951134398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0412951134398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0412951134398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0412951134398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0412951134398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0412951134398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0412951134398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0412951134398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0412951134398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0412951134398 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.1158393669234 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.1158393669234 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.1158393669234 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.1158393669234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.42742330361575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.42742330361575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.42742330361575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.42742330361575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.42742330361575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.42742330361575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.42742330361575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.42742330361575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.42742330361575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.42742330361575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.42742330361575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.42742330361575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.42742330361575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.42742330361575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.42742330361575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.42742330361575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.42742330361575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.27163133526957 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.27163133526957 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.27163133526957 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.27163133526957 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.27163133526957 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.27163133526957 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.27163133526957 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.27163133526957 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.27163133526957 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.27163133526957 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.27163133526957 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.27163133526957 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.27163133526957 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.27163133526957 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.27163133526957 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.27163133526957 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.27163133526957 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.19373535109649 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.19373535109649 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.19373535109649 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.19373535109649 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.19373535109649 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.19373535109649 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.19373535109649 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.19373535109649 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.19373535109649 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.19373535109649 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.19373535109649 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.19373535109649 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.19373535109649 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.19373535109649 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.19373535109649 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.19373535109649 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.19373535109649 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.15478735900995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.15478735900995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.15478735900995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.15478735900995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.15478735900995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.15478735900995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.15478735900995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.15478735900995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.15478735900995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.15478735900995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.15478735900995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.15478735900995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.15478735900995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.15478735900995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.15478735900995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.15478735900995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.15478735900995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.1158393669234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.1158393669234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.1158393669234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.1158393669234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.1158393669234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.1158393669234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.1158393669234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.1158393669234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.1158393669234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.1158393669234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.1158393669234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.1158393669234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.1158393669234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.1158393669234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.1158393669234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.1158393669234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.1158393669234 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17543583855601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17543583855601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17543583855601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17543583855601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.49297942241161 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.49297942241161 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.49297942241161 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.49297942241161 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.49297942241161 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.49297942241161 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.49297942241161 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.49297942241161 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.49297942241161 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.49297942241161 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.49297942241161 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49297942241161 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.49297942241161 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.49297942241161 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.49297942241161 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.49297942241161 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.49297942241161 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.33420763048381 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.33420763048381 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.33420763048381 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.33420763048381 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.33420763048381 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.33420763048381 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.33420763048381 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.33420763048381 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.33420763048381 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.33420763048381 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33420763048381 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33420763048381 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33420763048381 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.33420763048381 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.33420763048381 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.33420763048381 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.33420763048381 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.25482173451991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.25482173451991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.25482173451991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.25482173451991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.25482173451991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.25482173451991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.25482173451991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.25482173451991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.25482173451991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.25482173451991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.25482173451991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25482173451991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25482173451991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.25482173451991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.25482173451991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.25482173451991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.25482173451991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21512878653796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.21512878653796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.21512878653796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.21512878653796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.21512878653796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.21512878653796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.21512878653796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.21512878653796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21512878653796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.21512878653796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21512878653796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21512878653796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21512878653796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.21512878653796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.21512878653796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.21512878653796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.21512878653796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17543583855601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.17543583855601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.17543583855601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.17543583855601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.17543583855601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17543583855601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17543583855601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17543583855601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17543583855601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17543583855601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17543583855601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17543583855601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17543583855601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17543583855601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17543583855601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17543583855601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17543583855601 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.218748720865517 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.218748720865517 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.218748720865517 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.240623592952068 -8.43945807840045e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.229686156908793 -3.35276130497826e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.224217438887155 -8.09412918267157e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.218748720865517 -8.2662379251029e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0317033033627618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0317033033627618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0317033033627618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0317033033627618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0285329730264857 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0285329730264857 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0285329730264857 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0285329730264857 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0285329730264857 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0285329730264857 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0285329730264857 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0285329730264857 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0285329730264857 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0285329730264857 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0285329730264857 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0285329730264857 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0285329730264857 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0285329730264857 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0285329730264857 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0285329730264857 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0285329730264857 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0301181381946237 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0301181381946237 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0301181381946237 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0301181381946237 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0301181381946237 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0301181381946237 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0301181381946237 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0301181381946237 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0301181381946237 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0301181381946237 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0301181381946237 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0301181381946237 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0301181381946237 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0301181381946237 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0301181381946237 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0301181381946237 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0301181381946237 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0309107207786928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0309107207786928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0309107207786928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0309107207786928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0309107207786928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0309107207786928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0309107207786928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0309107207786928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0309107207786928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0309107207786928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0309107207786928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0309107207786928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0309107207786928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0309107207786928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0309107207786928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0309107207786928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0309107207786928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0313070120707273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0313070120707273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0313070120707273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0313070120707273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0313070120707273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0313070120707273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0313070120707273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0313070120707273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0313070120707273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0313070120707273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0313070120707273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0313070120707273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0313070120707273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0313070120707273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0313070120707273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0313070120707273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0313070120707273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0317033033627618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0317033033627618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0317033033627618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0317033033627618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0317033033627618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0317033033627618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0317033033627618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0317033033627618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0317033033627618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0317033033627618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0317033033627618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0317033033627618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0317033033627618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0317033033627618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0317033033627618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0317033033627618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0317033033627618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.203180690920111 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.203180690920111 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.203180690920111 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.203180690920111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1828626218281 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.1828626218281 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.1828626218281 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.1828626218281 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.1828626218281 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.1828626218281 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.1828626218281 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.1828626218281 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.1828626218281 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.1828626218281 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.1828626218281 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.1828626218281 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1828626218281 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.1828626218281 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.1828626218281 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.1828626218281 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.1828626218281 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193021656374105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.193021656374105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.193021656374105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.193021656374105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.193021656374105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.193021656374105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.193021656374105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.193021656374105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.193021656374105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.193021656374105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.193021656374105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.193021656374105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193021656374105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.193021656374105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.193021656374105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.193021656374105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.193021656374105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198101173647108 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.198101173647108 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.198101173647108 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.198101173647108 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.198101173647108 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.198101173647108 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.198101173647108 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.198101173647108 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.198101173647108 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.198101173647108 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.198101173647108 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.198101173647108 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198101173647108 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.198101173647108 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.198101173647108 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.198101173647108 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.198101173647108 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20064093228361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.20064093228361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.20064093228361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.20064093228361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.20064093228361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.20064093228361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.20064093228361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.20064093228361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.20064093228361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20064093228361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20064093228361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20064093228361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20064093228361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20064093228361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20064093228361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20064093228361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20064093228361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203180690920111 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.203180690920111 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.203180690920111 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.203180690920111 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.203180690920111 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.203180690920111 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.203180690920111 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.203180690920111 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.203180690920111 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.203180690920111 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.203180690920111 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.203180690920111 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203180690920111 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.203180690920111 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.203180690920111 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.203180690920111 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.203180690920111 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392435205907087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392435205907087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392435205907087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392435205907087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353191685316379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.353191685316379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.353191685316379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.353191685316379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.353191685316379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.353191685316379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.353191685316379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.353191685316379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.353191685316379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.353191685316379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.353191685316379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.353191685316379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353191685316379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.353191685316379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.353191685316379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.353191685316379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353191685316379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.372813445611733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.372813445611733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.372813445611733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.372813445611733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.372813445611733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.372813445611733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.372813445611733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.372813445611733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.372813445611733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.372813445611733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.372813445611733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.372813445611733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.372813445611733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.372813445611733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.372813445611733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.372813445611733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.372813445611733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38262432575941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.38262432575941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.38262432575941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.38262432575941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.38262432575941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.38262432575941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.38262432575941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.38262432575941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.38262432575941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.38262432575941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.38262432575941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.38262432575941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38262432575941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.38262432575941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.38262432575941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.38262432575941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.38262432575941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387529765833249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.387529765833249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.387529765833249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.387529765833249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.387529765833249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.387529765833249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.387529765833249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387529765833249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387529765833249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387529765833249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387529765833249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387529765833249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387529765833249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387529765833249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387529765833249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387529765833249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387529765833249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392435205907087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.392435205907087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.392435205907087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.392435205907087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.392435205907087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.392435205907087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392435205907087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392435205907087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392435205907087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392435205907087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392435205907087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392435205907087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392435205907087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392435205907087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392435205907087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392435205907087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392435205907087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.235711614798301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.235711614798301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.235711614798301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.235711614798301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212140453318471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212140453318471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.212140453318471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.212140453318471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.212140453318471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212140453318471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.212140453318471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.212140453318471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212140453318471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212140453318471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212140453318471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212140453318471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212140453318471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212140453318471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212140453318471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212140453318471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.212140453318471 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223926034058386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.223926034058386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.223926034058386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.223926034058386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.223926034058386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.223926034058386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.223926034058386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.223926034058386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.223926034058386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.223926034058386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.223926034058386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.223926034058386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223926034058386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.223926034058386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.223926034058386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.223926034058386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.223926034058386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229818824428343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.229818824428343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229818824428343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229818824428343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229818824428343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229818824428343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229818824428343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229818824428343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229818824428343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229818824428343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229818824428343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229818824428343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229818824428343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229818824428343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229818824428343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229818824428343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229818824428343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232765219613322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.232765219613322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.232765219613322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.232765219613322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.232765219613322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.232765219613322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.232765219613322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.232765219613322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.232765219613322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.232765219613322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.232765219613322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.232765219613322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232765219613322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.232765219613322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.232765219613322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.232765219613322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.232765219613322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235711614798301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.235711614798301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.235711614798301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.235711614798301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.235711614798301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.235711614798301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.235711614798301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.235711614798301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.235711614798301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.235711614798301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.235711614798301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.235711614798301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.235711614798301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.235711614798301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.235711614798301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.235711614798301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.235711614798301 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.364596447508128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.364596447508128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.364596447508128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.364596447508128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40105609225894 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.40105609225894 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.40105609225894 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.40105609225894 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.40105609225894 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.40105609225894 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.40105609225894 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.40105609225894 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.40105609225894 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.40105609225894 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.40105609225894 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.40105609225894 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40105609225894 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.40105609225894 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.40105609225894 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.40105609225894 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.40105609225894 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.382826269883534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.382826269883534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.382826269883534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.382826269883534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.382826269883534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.382826269883534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.382826269883534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.382826269883534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.382826269883534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.382826269883534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.382826269883534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.382826269883534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.382826269883534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.382826269883534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.382826269883534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.382826269883534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.382826269883534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.373711358695831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.373711358695831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.373711358695831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.373711358695831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.373711358695831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.373711358695831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.373711358695831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.373711358695831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.373711358695831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.373711358695831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.373711358695831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.373711358695831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.373711358695831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.373711358695831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.373711358695831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.373711358695831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.373711358695831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.369153903101979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.369153903101979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.369153903101979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.369153903101979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.369153903101979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.369153903101979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.369153903101979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.369153903101979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.369153903101979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.369153903101979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.369153903101979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.369153903101979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.369153903101979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.369153903101979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.369153903101979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.369153903101979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.369153903101979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364596447508128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.364596447508128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.364596447508128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.364596447508128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.364596447508128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.364596447508128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.364596447508128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.364596447508128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.364596447508128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.364596447508128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.364596447508128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.364596447508128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364596447508128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.364596447508128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.364596447508128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.364596447508128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.364596447508128 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229290998881439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229290998881439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229290998881439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229290998881439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.206361898993295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.206361898993295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.206361898993295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.206361898993295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.206361898993295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.206361898993295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.206361898993295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.206361898993295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.206361898993295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.206361898993295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.206361898993295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.206361898993295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.206361898993295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.206361898993295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.206361898993295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.206361898993295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.206361898993295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217826448937367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.217826448937367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.217826448937367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.217826448937367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.217826448937367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.217826448937367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.217826448937367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.217826448937367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.217826448937367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.217826448937367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.217826448937367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.217826448937367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217826448937367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.217826448937367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.217826448937367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.217826448937367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.217826448937367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223558723909403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.223558723909403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.223558723909403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.223558723909403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.223558723909403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.223558723909403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.223558723909403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.223558723909403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.223558723909403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.223558723909403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.223558723909403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.223558723909403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223558723909403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.223558723909403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.223558723909403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.223558723909403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.223558723909403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226424861395421 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226424861395421 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226424861395421 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226424861395421 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226424861395421 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226424861395421 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226424861395421 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226424861395421 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226424861395421 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226424861395421 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226424861395421 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226424861395421 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226424861395421 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226424861395421 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226424861395421 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.226424861395421 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.226424861395421 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229290998881439 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.229290998881439 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229290998881439 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229290998881439 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229290998881439 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229290998881439 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229290998881439 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229290998881439 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229290998881439 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229290998881439 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229290998881439 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229290998881439 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229290998881439 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229290998881439 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229290998881439 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229290998881439 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229290998881439 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.164312084474291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.164312084474291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.164312084474291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.164312084474291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.18074329292172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.18074329292172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.18074329292172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.18074329292172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.18074329292172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.18074329292172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.18074329292172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.18074329292172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.18074329292172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.18074329292172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.18074329292172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.18074329292172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.18074329292172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.18074329292172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.18074329292172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.18074329292172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.18074329292172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.172527688698006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.172527688698006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.172527688698006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.172527688698006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.172527688698006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.172527688698006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.172527688698006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.172527688698006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.172527688698006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.172527688698006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.172527688698006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.172527688698006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.172527688698006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.172527688698006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.172527688698006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.172527688698006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.172527688698006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.168419886586148 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.168419886586148 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.168419886586148 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.168419886586148 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.168419886586148 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.168419886586148 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.168419886586148 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.168419886586148 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.168419886586148 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.168419886586148 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.168419886586148 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.168419886586148 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.168419886586148 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.168419886586148 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.168419886586148 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.168419886586148 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.168419886586148 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16636598553022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.16636598553022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.16636598553022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.16636598553022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.16636598553022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.16636598553022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.16636598553022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.16636598553022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.16636598553022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.16636598553022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.16636598553022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.16636598553022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16636598553022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.16636598553022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.16636598553022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.16636598553022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.16636598553022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164312084474291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.164312084474291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.164312084474291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.164312084474291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.164312084474291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.164312084474291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.164312084474291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.164312084474291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.164312084474291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.164312084474291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.164312084474291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.164312084474291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164312084474291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.164312084474291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.164312084474291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.164312084474291 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.164312084474291 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.376862041346795 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.376862041346795 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.376862041346795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.376862041346795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339175837212116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339175837212116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.339175837212116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.339175837212116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.339175837212116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.339175837212116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.339175837212116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.339175837212116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.339175837212116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.339175837212116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.339175837212116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.339175837212116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.339175837212116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339175837212116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.339175837212116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.339175837212116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.339175837212116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.339175837212116 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358018939279456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358018939279456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.358018939279456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.358018939279456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.358018939279456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.358018939279456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.358018939279456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.358018939279456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.358018939279456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.358018939279456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.358018939279456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358018939279456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358018939279456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358018939279456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358018939279456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358018939279456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.358018939279456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.358018939279456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367440490313125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367440490313125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.367440490313125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.367440490313125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.367440490313125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.367440490313125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.367440490313125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367440490313125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367440490313125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367440490313125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367440490313125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367440490313125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367440490313125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367440490313125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367440490313125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367440490313125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367440490313125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367440490313125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37215126582996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37215126582996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.37215126582996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.37215126582996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.37215126582996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.37215126582996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.37215126582996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.37215126582996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.37215126582996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.37215126582996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.37215126582996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.37215126582996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.37215126582996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37215126582996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.37215126582996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.37215126582996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.37215126582996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.37215126582996 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.376862041346795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.376862041346795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.376862041346795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.376862041346795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.376862041346795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.376862041346795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.376862041346795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.376862041346795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.376862041346795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.376862041346795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.376862041346795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376862041346795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.376862041346795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.376862041346795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.376862041346795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.376862041346795 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.341541913042338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.341541913042338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.341541913042338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.341541913042338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.375696104346571 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.375696104346571 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.375696104346571 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.375696104346571 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.375696104346571 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.375696104346571 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.375696104346571 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.375696104346571 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.375696104346571 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.375696104346571 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.375696104346571 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.375696104346571 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.375696104346571 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.375696104346571 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.375696104346571 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.375696104346571 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.375696104346571 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.375696104346571 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358619008694455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358619008694455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.358619008694455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.358619008694455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.358619008694455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.358619008694455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.358619008694455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.358619008694455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.358619008694455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.358619008694455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.358619008694455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.358619008694455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.358619008694455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358619008694455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.358619008694455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.358619008694455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.358619008694455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.358619008694455 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350080460868396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350080460868396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.350080460868396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.350080460868396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.350080460868396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.350080460868396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.350080460868396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.350080460868396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.350080460868396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.350080460868396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.350080460868396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.350080460868396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.350080460868396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350080460868396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.350080460868396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.350080460868396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.350080460868396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.350080460868396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345811186955367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345811186955367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.345811186955367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.345811186955367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.345811186955367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345811186955367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345811186955367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345811186955367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345811186955367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345811186955367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345811186955367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345811186955367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345811186955367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345811186955367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345811186955367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345811186955367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345811186955367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345811186955367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.341541913042338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.341541913042338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.341541913042338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.341541913042338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.341541913042338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.341541913042338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.341541913042338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.341541913042338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.341541913042338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.341541913042338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.341541913042338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341541913042338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.341541913042338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.341541913042338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.341541913042338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.341541913042338 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.394885936291606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.394885936291606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.394885936291606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.394885936291606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.355397342662446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.355397342662446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.355397342662446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.355397342662446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.355397342662446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.355397342662446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.355397342662446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.355397342662446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.355397342662446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.355397342662446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.355397342662446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.355397342662446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.355397342662446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.355397342662446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.355397342662446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.355397342662446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.355397342662446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375141639477026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.375141639477026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.375141639477026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.375141639477026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.375141639477026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.375141639477026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.375141639477026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.375141639477026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.375141639477026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.375141639477026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.375141639477026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.375141639477026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375141639477026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.375141639477026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.375141639477026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.375141639477026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.375141639477026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385013787884316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.385013787884316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.385013787884316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385013787884316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385013787884316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385013787884316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385013787884316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385013787884316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385013787884316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385013787884316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385013787884316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385013787884316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385013787884316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385013787884316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385013787884316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385013787884316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385013787884316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.389949862087961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.389949862087961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.389949862087961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.389949862087961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.389949862087961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.389949862087961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.389949862087961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.389949862087961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.389949862087961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.389949862087961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.389949862087961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.389949862087961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.389949862087961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.389949862087961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.389949862087961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.389949862087961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.389949862087961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394885936291606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.394885936291606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.394885936291606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.394885936291606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.394885936291606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.394885936291606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.394885936291606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.394885936291606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.394885936291606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.394885936291606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.394885936291606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.394885936291606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394885936291606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.394885936291606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.394885936291606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.394885936291606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.394885936291606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.335309848332555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.335309848332555 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.335309848332555 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.335309848332555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36884083316581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.36884083316581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.36884083316581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.36884083316581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.36884083316581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.36884083316581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.36884083316581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.36884083316581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.36884083316581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36884083316581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36884083316581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36884083316581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36884083316581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36884083316581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36884083316581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36884083316581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36884083316581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.352075340749183 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.352075340749183 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.352075340749183 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.352075340749183 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.352075340749183 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.352075340749183 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.352075340749183 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.352075340749183 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.352075340749183 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.352075340749183 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.352075340749183 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.352075340749183 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.352075340749183 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.352075340749183 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.352075340749183 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.352075340749183 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.352075340749183 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.343692594540869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.343692594540869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.343692594540869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.343692594540869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.343692594540869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.343692594540869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.343692594540869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.343692594540869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.343692594540869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.343692594540869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.343692594540869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.343692594540869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.343692594540869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.343692594540869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.343692594540869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.343692594540869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.343692594540869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.339501221436712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.339501221436712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.339501221436712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.339501221436712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.339501221436712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.339501221436712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.339501221436712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.339501221436712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.339501221436712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.339501221436712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.339501221436712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.339501221436712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.339501221436712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.339501221436712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.339501221436712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.339501221436712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.339501221436712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.335309848332555 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.335309848332555 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.335309848332555 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.335309848332555 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.335309848332555 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.335309848332555 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.335309848332555 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.335309848332555 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.335309848332555 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.335309848332555 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.335309848332555 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.335309848332555 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.335309848332555 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.335309848332555 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.335309848332555 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.335309848332555 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.335309848332555 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.112855469736551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.112855469736551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.112855469736551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.112855469736551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124141016710206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.124141016710206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.124141016710206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.124141016710206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.124141016710206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.124141016710206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.124141016710206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.124141016710206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.124141016710206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.124141016710206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.124141016710206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.124141016710206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124141016710206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.124141016710206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.124141016710206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.124141016710206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.124141016710206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.118498243223379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.118498243223379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.118498243223379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.118498243223379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.118498243223379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.118498243223379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.118498243223379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.118498243223379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.118498243223379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.118498243223379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.118498243223379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.118498243223379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.118498243223379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.118498243223379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.118498243223379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.118498243223379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.118498243223379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115676856479965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.115676856479965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.115676856479965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.115676856479965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.115676856479965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.115676856479965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.115676856479965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.115676856479965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.115676856479965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115676856479965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115676856479965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115676856479965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115676856479965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115676856479965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115676856479965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115676856479965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115676856479965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.114266163108258 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.114266163108258 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.114266163108258 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.114266163108258 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.114266163108258 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.114266163108258 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.114266163108258 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.114266163108258 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.114266163108258 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.114266163108258 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.114266163108258 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.114266163108258 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.114266163108258 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.114266163108258 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.114266163108258 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.114266163108258 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.114266163108258 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112855469736551 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.112855469736551 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.112855469736551 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.112855469736551 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.112855469736551 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.112855469736551 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.112855469736551 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.112855469736551 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.112855469736551 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.112855469736551 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.112855469736551 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.112855469736551 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112855469736551 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.112855469736551 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.112855469736551 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.112855469736551 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.112855469736551 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.193441966241317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.193441966241317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.193441966241317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.193441966241317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.174097769617185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.174097769617185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.174097769617185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.174097769617185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.174097769617185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.174097769617185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.174097769617185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.174097769617185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.174097769617185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.174097769617185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.174097769617185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.174097769617185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.174097769617185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.174097769617185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.174097769617185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.174097769617185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.174097769617185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183769867929251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183769867929251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183769867929251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183769867929251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183769867929251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183769867929251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183769867929251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183769867929251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183769867929251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183769867929251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183769867929251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183769867929251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183769867929251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183769867929251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183769867929251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183769867929251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.183769867929251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188605917085284 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.188605917085284 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.188605917085284 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.188605917085284 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.188605917085284 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.188605917085284 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.188605917085284 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.188605917085284 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188605917085284 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188605917085284 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188605917085284 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188605917085284 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188605917085284 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188605917085284 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188605917085284 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188605917085284 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188605917085284 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1910239416633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.1910239416633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.1910239416633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.1910239416633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.1910239416633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.1910239416633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.1910239416633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.1910239416633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.1910239416633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.1910239416633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.1910239416633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.1910239416633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1910239416633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.1910239416633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.1910239416633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.1910239416633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.1910239416633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193441966241317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.193441966241317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.193441966241317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.193441966241317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.193441966241317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.193441966241317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.193441966241317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.193441966241317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.193441966241317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.193441966241317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.193441966241317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.193441966241317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.193441966241317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.193441966241317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.193441966241317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.193441966241317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.193441966241317 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.867845885988664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.867845885988664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.867845885988664 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.867845885988664 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781061297389797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.781061297389797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.781061297389797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.781061297389797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.781061297389797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.781061297389797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.781061297389797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.781061297389797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.781061297389797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781061297389797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781061297389797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781061297389797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781061297389797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781061297389797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781061297389797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781061297389797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781061297389797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.824453591689231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.824453591689231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.824453591689231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.824453591689231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.824453591689231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.824453591689231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.824453591689231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.824453591689231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.824453591689231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.824453591689231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.824453591689231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.824453591689231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.824453591689231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.824453591689231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.824453591689231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.824453591689231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.824453591689231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.846149738838947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.846149738838947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.846149738838947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.846149738838947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.846149738838947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.846149738838947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.846149738838947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.846149738838947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.846149738838947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.846149738838947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.846149738838947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.846149738838947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.846149738838947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.846149738838947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.846149738838947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.846149738838947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.846149738838947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.856997812413805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.856997812413805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.856997812413805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.856997812413805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.856997812413805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.856997812413805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.856997812413805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.856997812413805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.856997812413805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.856997812413805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.856997812413805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.856997812413805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.856997812413805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.856997812413805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.856997812413805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.856997812413805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.856997812413805 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.867845885988664 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.867845885988664 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.867845885988664 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.867845885988664 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.867845885988664 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.867845885988664 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.867845885988664 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.867845885988664 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.867845885988664 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.867845885988664 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.867845885988664 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.867845885988664 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.867845885988664 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.867845885988664 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.867845885988664 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.867845885988664 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.867845885988664 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25729406579076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25729406579076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25729406579076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25729406579076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13156465921169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13156465921169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13156465921169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13156465921169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13156465921169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13156465921169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13156465921169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13156465921169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13156465921169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13156465921169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13156465921169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13156465921169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13156465921169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13156465921169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13156465921169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13156465921169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13156465921169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19442936250122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.19442936250122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.19442936250122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.19442936250122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.19442936250122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.19442936250122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.19442936250122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.19442936250122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.19442936250122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.19442936250122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.19442936250122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.19442936250122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.19442936250122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19442936250122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.19442936250122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.19442936250122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.19442936250122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22586171414599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.22586171414599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.22586171414599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.22586171414599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.22586171414599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.22586171414599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22586171414599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.22586171414599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22586171414599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22586171414599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22586171414599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22586171414599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22586171414599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22586171414599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22586171414599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22586171414599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22586171414599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24157788996838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.24157788996838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.24157788996838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.24157788996838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.24157788996838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.24157788996838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.24157788996838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.24157788996838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.24157788996838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.24157788996838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.24157788996838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.24157788996838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.24157788996838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24157788996838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.24157788996838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.24157788996838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.24157788996838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25729406579076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.25729406579076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.25729406579076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.25729406579076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.25729406579076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.25729406579076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.25729406579076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.25729406579076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.25729406579076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.25729406579076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25729406579076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25729406579076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25729406579076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25729406579076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25729406579076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25729406579076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25729406579076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35736933466358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35736933466358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35736933466358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35736933466358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22163240119722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.22163240119722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.22163240119722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.22163240119722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.22163240119722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.22163240119722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22163240119722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.22163240119722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22163240119722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22163240119722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22163240119722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22163240119722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22163240119722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22163240119722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22163240119722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22163240119722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22163240119722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2895008679304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.2895008679304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.2895008679304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.2895008679304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2895008679304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2895008679304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2895008679304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2895008679304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2895008679304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2895008679304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2895008679304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2895008679304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2895008679304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2895008679304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2895008679304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.2895008679304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.2895008679304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32343510129699 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.32343510129699 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.32343510129699 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.32343510129699 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.32343510129699 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.32343510129699 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.32343510129699 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.32343510129699 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.32343510129699 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.32343510129699 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.32343510129699 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.32343510129699 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.32343510129699 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32343510129699 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.32343510129699 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.32343510129699 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.32343510129699 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34040221798028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.34040221798028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.34040221798028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.34040221798028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.34040221798028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.34040221798028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.34040221798028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34040221798028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34040221798028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34040221798028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34040221798028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34040221798028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34040221798028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34040221798028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34040221798028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34040221798028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34040221798028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35736933466358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.35736933466358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.35736933466358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.35736933466358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.35736933466358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.35736933466358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35736933466358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35736933466358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35736933466358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35736933466358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35736933466358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35736933466358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35736933466358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35736933466358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35736933466358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35736933466358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35736933466358 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.5767910187214 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.5767910187214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.5767910187214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.5767910187214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.83447012059354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.70563056965747 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.64121079418944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.60900090645542 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.5767910187214 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.5767910187214 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.409816587057775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.409816587057775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.409816587057775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.409816587057775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.368834928351997 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.389325757704886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.39957117238133 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.404693879719553 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.409816587057775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.409816587057775 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442271023768292 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442271023768292 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442271023768292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442271023768292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.486498126145121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.486498126145121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.486498126145121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.486498126145121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.486498126145121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.486498126145121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.486498126145121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.486498126145121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.486498126145121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.486498126145121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.486498126145121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.486498126145121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.486498126145121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.486498126145121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.486498126145121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.486498126145121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.486498126145121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.486498126145121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464384574956706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464384574956706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.464384574956706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.464384574956706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.464384574956706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.464384574956706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.464384574956706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.464384574956706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.464384574956706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.464384574956706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.464384574956706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.464384574956706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.464384574956706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464384574956706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.464384574956706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.464384574956706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.464384574956706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.464384574956706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.453327799362499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.453327799362499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.453327799362499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.453327799362499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.453327799362499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.453327799362499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.453327799362499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.453327799362499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.453327799362499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.453327799362499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.453327799362499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.453327799362499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.453327799362499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.453327799362499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.453327799362499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.453327799362499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.453327799362499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.453327799362499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447799411565395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447799411565395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.447799411565395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.447799411565395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.447799411565395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.447799411565395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.447799411565395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.447799411565395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.447799411565395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.447799411565395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.447799411565395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.447799411565395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.447799411565395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447799411565395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.447799411565395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.447799411565395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.447799411565395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.447799411565395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.442271023768292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.442271023768292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.442271023768292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.442271023768292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.442271023768292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.442271023768292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.442271023768292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.442271023768292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442271023768292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442271023768292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442271023768292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442271023768292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442271023768292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442271023768292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442271023768292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442271023768292 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.379035652578964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.379035652578964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.379035652578964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.379035652578964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.341132087321067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.341132087321067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.341132087321067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.341132087321067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.341132087321067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.341132087321067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.341132087321067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.341132087321067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.341132087321067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.341132087321067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.341132087321067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.341132087321067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.341132087321067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.341132087321067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.341132087321067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.341132087321067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.341132087321067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.341132087321067 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.360083869950016 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.360083869950016 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.360083869950016 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.360083869950016 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.360083869950016 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.360083869950016 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.360083869950016 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.360083869950016 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.360083869950016 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.360083869950016 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.360083869950016 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.360083869950016 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.360083869950016 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.360083869950016 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.360083869950016 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.360083869950016 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.360083869950016 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.360083869950016 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36955976126449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36955976126449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.36955976126449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.36955976126449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.36955976126449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.36955976126449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.36955976126449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.36955976126449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.36955976126449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.36955976126449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.36955976126449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.36955976126449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.36955976126449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36955976126449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.36955976126449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.36955976126449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.36955976126449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.36955976126449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.374297706921727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.374297706921727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.374297706921727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.374297706921727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.374297706921727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.374297706921727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.374297706921727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.374297706921727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.374297706921727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.374297706921727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.374297706921727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.374297706921727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.374297706921727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.374297706921727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.374297706921727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.374297706921727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.374297706921727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.374297706921727 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.379035652578964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.379035652578964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.379035652578964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.379035652578964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.379035652578964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.379035652578964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.379035652578964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.379035652578964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.379035652578964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.379035652578964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.379035652578964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379035652578964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.379035652578964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.379035652578964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.379035652578964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.379035652578964 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.388494288950688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.388494288950688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.388494288950688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.388494288950688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349644860055619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.349644860055619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.349644860055619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.349644860055619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.349644860055619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.349644860055619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.349644860055619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.349644860055619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.349644860055619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.349644860055619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.349644860055619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.349644860055619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349644860055619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.349644860055619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.349644860055619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.349644860055619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.349644860055619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.369069574503154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.369069574503154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.369069574503154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.369069574503154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.369069574503154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.369069574503154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.369069574503154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.369069574503154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.369069574503154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.369069574503154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.369069574503154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.369069574503154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.369069574503154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.369069574503154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.369069574503154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.369069574503154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.369069574503154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378781931726921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.378781931726921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.378781931726921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.378781931726921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.378781931726921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.378781931726921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.378781931726921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.378781931726921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.378781931726921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.378781931726921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.378781931726921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.378781931726921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378781931726921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.378781931726921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.378781931726921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.378781931726921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.378781931726921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383638110338804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.383638110338804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.383638110338804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.383638110338804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.383638110338804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.383638110338804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.383638110338804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.383638110338804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.383638110338804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.383638110338804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.383638110338804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.383638110338804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383638110338804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.383638110338804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.383638110338804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.383638110338804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.383638110338804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388494288950688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.388494288950688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.388494288950688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.388494288950688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.388494288950688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.388494288950688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.388494288950688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.388494288950688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.388494288950688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.388494288950688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.388494288950688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.388494288950688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388494288950688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.388494288950688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.388494288950688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.388494288950688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.388494288950688 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.446420633927444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.446420633927444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.446420633927444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.446420633927444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.4017785705347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.424099602231072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.435260118079258 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.440840376003351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.446420633927444 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.300773568122545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.300773568122545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.300773568122545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.300773568122545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.27069621131029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.285734889716417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.293254228919481 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297013898521013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.300773568122545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3462096454863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3462096454863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3462096454863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3462096454863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.38083061003493 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.363520127760615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.354864886623458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.350537266054879 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3462096454863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3462096454863 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0203366333478589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0203366333478589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0203366333478589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0203366333478589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.018302970013073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.018302970013073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.018302970013073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.018302970013073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.018302970013073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.018302970013073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.018302970013073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.018302970013073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.018302970013073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.018302970013073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.018302970013073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.018302970013073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.018302970013073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.018302970013073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.018302970013073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.018302970013073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.018302970013073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.019319801680466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.019319801680466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.019319801680466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.019319801680466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.019319801680466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.019319801680466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.019319801680466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.019319801680466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.019319801680466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.019319801680466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.019319801680466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.019319801680466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.019319801680466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.019319801680466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.019319801680466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.019319801680466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.019319801680466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0198282175141624 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0198282175141624 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0198282175141624 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0198282175141624 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0198282175141624 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0198282175141624 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0198282175141624 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0198282175141624 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0198282175141624 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0198282175141624 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0198282175141624 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0198282175141624 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0198282175141624 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0198282175141624 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0198282175141624 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0198282175141624 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0198282175141624 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0200824254310107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0200824254310107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0200824254310107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0200824254310107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0200824254310107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0200824254310107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0200824254310107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0200824254310107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0200824254310107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0200824254310107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0200824254310107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0200824254310107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0200824254310107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0200824254310107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0200824254310107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0200824254310107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0200824254310107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0203366333478589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0203366333478589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0203366333478589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0203366333478589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0203366333478589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0203366333478589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0203366333478589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0203366333478589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0203366333478589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0203366333478589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0203366333478589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0203366333478589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0203366333478589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0203366333478589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0203366333478589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0203366333478589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0203366333478589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.38823943319105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.38823943319105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.38823943319105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.38823943319105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349415489871945 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.349415489871945 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.349415489871945 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.349415489871945 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.349415489871945 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.349415489871945 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.349415489871945 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.349415489871945 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.349415489871945 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.349415489871945 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.349415489871945 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.349415489871945 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349415489871945 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.349415489871945 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.349415489871945 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.349415489871945 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.349415489871945 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368827461531498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.368827461531498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.368827461531498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.368827461531498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.368827461531498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.368827461531498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.368827461531498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.368827461531498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.368827461531498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.368827461531498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.368827461531498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.368827461531498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.368827461531498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.368827461531498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.368827461531498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.368827461531498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.368827461531498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378533447361274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.378533447361274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.378533447361274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.378533447361274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.378533447361274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.378533447361274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.378533447361274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.378533447361274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.378533447361274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.378533447361274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.378533447361274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.378533447361274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378533447361274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.378533447361274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.378533447361274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.378533447361274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.378533447361274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383386440276162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.383386440276162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.383386440276162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.383386440276162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.383386440276162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.383386440276162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.383386440276162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.383386440276162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.383386440276162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.383386440276162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.383386440276162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.383386440276162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383386440276162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.383386440276162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.383386440276162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.383386440276162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.383386440276162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38823943319105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.38823943319105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.38823943319105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.38823943319105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.38823943319105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.38823943319105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.38823943319105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.38823943319105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.38823943319105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.38823943319105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.38823943319105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.38823943319105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.38823943319105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.38823943319105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.38823943319105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.38823943319105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.38823943319105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0573526091303382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0573526091303382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0573526091303382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0573526091303382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516173482173043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0516173482173043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0516173482173043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0516173482173043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0516173482173043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0516173482173043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0516173482173043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0516173482173043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0516173482173043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0516173482173043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0516173482173043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0516173482173043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0516173482173043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0516173482173043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0516173482173043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0516173482173043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0516173482173043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0544849786738212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0544849786738212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0544849786738212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0544849786738212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0544849786738212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0544849786738212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0544849786738212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0544849786738212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0544849786738212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0544849786738212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0544849786738212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0544849786738212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0544849786738212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0544849786738212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0544849786738212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0544849786738212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0544849786738212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0559187939020797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0559187939020797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0559187939020797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0559187939020797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0559187939020797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0559187939020797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0559187939020797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0559187939020797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0559187939020797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0559187939020797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0559187939020797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0559187939020797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0559187939020797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0559187939020797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0559187939020797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0559187939020797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0559187939020797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0566357015162089 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0566357015162089 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0566357015162089 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0566357015162089 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0566357015162089 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0566357015162089 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0566357015162089 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0566357015162089 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0566357015162089 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0566357015162089 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0566357015162089 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0566357015162089 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0566357015162089 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0566357015162089 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0566357015162089 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0566357015162089 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0566357015162089 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573526091303382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0573526091303382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0573526091303382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0573526091303382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0573526091303382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0573526091303382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0573526091303382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0573526091303382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0573526091303382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0573526091303382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0573526091303382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0573526091303382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0573526091303382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0573526091303382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0573526091303382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0573526091303382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0573526091303382 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.143383548600954 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.143383548600954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.143383548600954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.143383548600954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.157721903461049 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.157721903461049 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.157721903461049 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.157721903461049 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.157721903461049 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.157721903461049 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.157721903461049 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.157721903461049 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.157721903461049 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.157721903461049 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.157721903461049 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.157721903461049 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.157721903461049 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.157721903461049 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.157721903461049 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.157721903461049 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.157721903461049 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.150552726031002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.150552726031002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.150552726031002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.150552726031002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.150552726031002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.150552726031002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.150552726031002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.150552726031002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.150552726031002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.150552726031002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.150552726031002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.150552726031002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.150552726031002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.150552726031002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.150552726031002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.150552726031002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.150552726031002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.146968137315978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.146968137315978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.146968137315978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.146968137315978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.146968137315978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.146968137315978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.146968137315978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.146968137315978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.146968137315978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.146968137315978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.146968137315978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.146968137315978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.146968137315978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.146968137315978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.146968137315978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.146968137315978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.146968137315978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145175842958466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.145175842958466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.145175842958466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.145175842958466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.145175842958466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145175842958466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145175842958466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145175842958466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145175842958466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145175842958466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145175842958466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145175842958466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145175842958466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145175842958466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145175842958466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145175842958466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145175842958466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143383548600954 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.143383548600954 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.143383548600954 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.143383548600954 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.143383548600954 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.143383548600954 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.143383548600954 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.143383548600954 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.143383548600954 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.143383548600954 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.143383548600954 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.143383548600954 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143383548600954 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.143383548600954 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.143383548600954 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.143383548600954 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.143383548600954 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406295698377735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406295698377735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406295698377735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406295698377735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365666128539961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365666128539961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365666128539961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365666128539961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365666128539961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365666128539961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365666128539961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365666128539961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365666128539961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365666128539961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365666128539961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365666128539961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365666128539961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365666128539961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365666128539961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365666128539961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365666128539961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385980913458848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.385980913458848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.385980913458848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385980913458848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385980913458848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385980913458848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385980913458848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385980913458848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385980913458848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385980913458848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385980913458848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385980913458848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385980913458848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385980913458848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385980913458848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385980913458848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385980913458848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.396138305918292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.396138305918292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.396138305918292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.396138305918292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.396138305918292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.396138305918292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.396138305918292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.396138305918292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.396138305918292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.396138305918292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.396138305918292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.396138305918292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.396138305918292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.396138305918292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.396138305918292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.396138305918292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.396138305918292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401217002148013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.401217002148013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.401217002148013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.401217002148013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.401217002148013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.401217002148013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401217002148013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401217002148013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401217002148013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401217002148013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401217002148013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401217002148013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401217002148013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401217002148013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401217002148013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401217002148013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401217002148013 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406295698377735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.406295698377735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.406295698377735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.406295698377735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.406295698377735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.406295698377735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406295698377735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406295698377735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406295698377735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406295698377735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406295698377735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406295698377735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406295698377735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406295698377735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406295698377735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406295698377735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406295698377735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162394691574965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162394691574965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162394691574965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162394691574965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146155222417469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.146155222417469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.146155222417469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.146155222417469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.146155222417469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.146155222417469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146155222417469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146155222417469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146155222417469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146155222417469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146155222417469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146155222417469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146155222417469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146155222417469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146155222417469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146155222417469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146155222417469 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.154274956996217 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.154274956996217 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.154274956996217 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.154274956996217 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.154274956996217 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.154274956996217 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.154274956996217 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.154274956996217 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.154274956996217 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.154274956996217 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.154274956996217 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.154274956996217 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.154274956996217 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.154274956996217 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.154274956996217 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.154274956996217 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.154274956996217 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158334824285591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.158334824285591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.158334824285591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.158334824285591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.158334824285591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.158334824285591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.158334824285591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.158334824285591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.158334824285591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158334824285591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158334824285591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158334824285591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158334824285591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158334824285591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158334824285591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158334824285591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158334824285591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.160364757930278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.160364757930278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.160364757930278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.160364757930278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.160364757930278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.160364757930278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.160364757930278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.160364757930278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.160364757930278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.160364757930278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.160364757930278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.160364757930278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.160364757930278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.160364757930278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.160364757930278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.160364757930278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.160364757930278 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162394691574965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.162394691574965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162394691574965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162394691574965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162394691574965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162394691574965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162394691574965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162394691574965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162394691574965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162394691574965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162394691574965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162394691574965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162394691574965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162394691574965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162394691574965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.162394691574965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.162394691574965 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.477584198771623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.477584198771623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.477584198771623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.477584198771623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.525342618648786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.525342618648786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.525342618648786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.525342618648786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.525342618648786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.525342618648786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.525342618648786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.525342618648786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.525342618648786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.525342618648786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.525342618648786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.525342618648786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.525342618648786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.525342618648786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.525342618648786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.525342618648786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.525342618648786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.501463408710205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.501463408710205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.501463408710205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.501463408710205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.501463408710205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.501463408710205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.501463408710205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.501463408710205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.501463408710205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.501463408710205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.501463408710205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.501463408710205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.501463408710205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.501463408710205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.501463408710205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.501463408710205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.501463408710205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.489523803740914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.489523803740914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.489523803740914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.489523803740914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.489523803740914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.489523803740914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.489523803740914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.489523803740914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.489523803740914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.489523803740914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.489523803740914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.489523803740914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.489523803740914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.489523803740914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.489523803740914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.489523803740914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.489523803740914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483554001256269 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.483554001256269 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.483554001256269 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.483554001256269 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.483554001256269 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.483554001256269 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483554001256269 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483554001256269 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483554001256269 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483554001256269 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483554001256269 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483554001256269 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483554001256269 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483554001256269 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483554001256269 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483554001256269 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483554001256269 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477584198771623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.477584198771623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.477584198771623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.477584198771623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.477584198771623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.477584198771623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.477584198771623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.477584198771623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.477584198771623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.477584198771623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.477584198771623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.477584198771623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.477584198771623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.477584198771623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.477584198771623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.477584198771623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.477584198771623 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.09269171154962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.09269171154962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.09269171154962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.09269171154962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.88342254039466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.88342254039466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.88342254039466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.88342254039466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.88342254039466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.88342254039466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.88342254039466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.88342254039466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.88342254039466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.88342254039466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.88342254039466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.88342254039466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.88342254039466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.88342254039466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.88342254039466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.88342254039466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.88342254039466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.98805712597214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.98805712597214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.98805712597214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.98805712597214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.98805712597214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.98805712597214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.98805712597214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.98805712597214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.98805712597214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.98805712597214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.98805712597214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.98805712597214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.98805712597214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.98805712597214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.98805712597214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.98805712597214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.98805712597214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04037441876088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.04037441876088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.04037441876088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.04037441876088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.04037441876088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.04037441876088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.04037441876088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.04037441876088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04037441876088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04037441876088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04037441876088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04037441876088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04037441876088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04037441876088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04037441876088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04037441876088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04037441876088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.06653306515525 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.06653306515525 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.06653306515525 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.06653306515525 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.06653306515525 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.06653306515525 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.06653306515525 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.06653306515525 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.06653306515525 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.06653306515525 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.06653306515525 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.06653306515525 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.06653306515525 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.06653306515525 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.06653306515525 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.06653306515525 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.06653306515525 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09269171154962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.09269171154962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.09269171154962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.09269171154962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.09269171154962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.09269171154962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.09269171154962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.09269171154962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.09269171154962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.09269171154962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.09269171154962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.09269171154962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.09269171154962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.09269171154962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09269171154962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.09269171154962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.09269171154962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.0822284407123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.0822284407123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.0822284407123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.0822284407123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.87400559664107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.87400559664107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.87400559664107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.87400559664107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.87400559664107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.87400559664107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.87400559664107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.87400559664107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.87400559664107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.87400559664107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.87400559664107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.87400559664107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.87400559664107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.87400559664107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.87400559664107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.87400559664107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.87400559664107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.97811701867668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.97811701867668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.97811701867668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.97811701867668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.97811701867668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.97811701867668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.97811701867668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.97811701867668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.97811701867668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.97811701867668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.97811701867668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.97811701867668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.97811701867668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.97811701867668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.97811701867668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.97811701867668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.97811701867668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.03017272969449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.03017272969449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.03017272969449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.03017272969449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.03017272969449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.03017272969449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.03017272969449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.03017272969449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.03017272969449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.03017272969449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.03017272969449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.03017272969449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.03017272969449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.03017272969449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.03017272969449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.03017272969449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.03017272969449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.05620058520339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.05620058520339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.05620058520339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.05620058520339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.05620058520339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.05620058520339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.05620058520339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.05620058520339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.05620058520339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.05620058520339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.05620058520339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.05620058520339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.05620058520339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.05620058520339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.05620058520339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.05620058520339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.05620058520339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0822284407123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.0822284407123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.0822284407123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.0822284407123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.0822284407123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.0822284407123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.0822284407123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.0822284407123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.0822284407123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.0822284407123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.0822284407123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.0822284407123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.0822284407123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.0822284407123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.0822284407123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.0822284407123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.0822284407123 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00141733236610154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00141733236610154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00141733236610154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00141733236610154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00127559912949138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00127559912949138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00127559912949138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00127559912949138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00127559912949138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00127559912949138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00127559912949138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00127559912949138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00127559912949138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00127559912949138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00127559912949138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00127559912949138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00127559912949138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00127559912949138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00127559912949138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00127559912949138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00127559912949138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00134646574779646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00134646574779646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00134646574779646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00134646574779646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00134646574779646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00134646574779646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00134646574779646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00134646574779646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00134646574779646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00134646574779646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00134646574779646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00134646574779646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00134646574779646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00134646574779646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00134646574779646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00134646574779646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00134646574779646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.001381899056949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.001381899056949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.001381899056949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.001381899056949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.001381899056949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.001381899056949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.001381899056949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.001381899056949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.001381899056949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.001381899056949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.001381899056949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.001381899056949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.001381899056949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.001381899056949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.001381899056949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.001381899056949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.001381899056949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00139961571152527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00139961571152527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00139961571152527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00139961571152527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00139961571152527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00139961571152527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00139961571152527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00139961571152527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00139961571152527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00139961571152527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00139961571152527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00139961571152527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00139961571152527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00139961571152527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00139961571152527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00139961571152527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00139961571152527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00141733236610154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00141733236610154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00141733236610154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00141733236610154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00141733236610154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00141733236610154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00141733236610154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00141733236610154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00141733236610154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00141733236610154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00141733236610154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00141733236610154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00141733236610154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00141733236610154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00141733236610154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00141733236610154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00141733236610154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.432112166041778 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.432112166041778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.432112166041778 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.432112166041778 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3889009494376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.3889009494376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.3889009494376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.3889009494376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.3889009494376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.3889009494376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.3889009494376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.3889009494376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.3889009494376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.3889009494376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.3889009494376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.3889009494376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3889009494376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.3889009494376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.3889009494376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.3889009494376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.3889009494376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410506557739689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.410506557739689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.410506557739689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.410506557739689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.410506557739689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.410506557739689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.410506557739689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.410506557739689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.410506557739689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.410506557739689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.410506557739689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.410506557739689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410506557739689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.410506557739689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.410506557739689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.410506557739689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.410506557739689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.421309361890733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.421309361890733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.421309361890733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.421309361890733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.421309361890733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.421309361890733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.421309361890733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.421309361890733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.421309361890733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.421309361890733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.421309361890733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.421309361890733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.421309361890733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.421309361890733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.421309361890733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.421309361890733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.421309361890733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.426710763966255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.426710763966255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.426710763966255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.426710763966255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.426710763966255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.426710763966255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.426710763966255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.426710763966255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.426710763966255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.426710763966255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.426710763966255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.426710763966255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.426710763966255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.426710763966255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.426710763966255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.426710763966255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.426710763966255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432112166041778 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.432112166041778 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.432112166041778 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.432112166041778 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.432112166041778 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.432112166041778 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.432112166041778 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.432112166041778 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.432112166041778 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.432112166041778 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.432112166041778 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.432112166041778 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432112166041778 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.432112166041778 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.432112166041778 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.432112166041778 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.432112166041778 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.485085453603817 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.485085453603817 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.485085453603817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.485085453603817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436576908243435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.460831180923626 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472958317263721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.479021885433769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.485085453603817 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00069527252558732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00069527252558732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00069527252558732 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00069527252558732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.000625745273028588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.000660508899307954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.000677890712447637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.000686581619017479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00069527252558732 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0273858845198743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0273858845198743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0273858845198743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0273858845198743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0246472960678869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0260165902938806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267012374068775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0270435609633759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0273858845198743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0273858845198743 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116161425870895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116161425870895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116161425870895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116161425870895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127777568457985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.127777568457985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.127777568457985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.127777568457985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.127777568457985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.127777568457985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.127777568457985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.127777568457985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.127777568457985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.127777568457985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.127777568457985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.127777568457985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127777568457985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.127777568457985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.127777568457985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.127777568457985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.127777568457985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.12196949716444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.12196949716444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.12196949716444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.12196949716444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.12196949716444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.12196949716444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.12196949716444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.12196949716444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.12196949716444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.12196949716444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.12196949716444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.12196949716444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.12196949716444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.12196949716444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.12196949716444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.12196949716444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.12196949716444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.119065461517668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.119065461517668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.119065461517668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.119065461517668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.119065461517668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.119065461517668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.119065461517668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.119065461517668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.119065461517668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.119065461517668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.119065461517668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.119065461517668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.119065461517668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.119065461517668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.119065461517668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.119065461517668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.119065461517668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.117613443694281 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.117613443694281 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.117613443694281 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.117613443694281 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.117613443694281 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.117613443694281 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.117613443694281 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.117613443694281 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.117613443694281 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.117613443694281 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.117613443694281 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.117613443694281 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.117613443694281 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.117613443694281 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.117613443694281 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.117613443694281 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.117613443694281 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116161425870895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.116161425870895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.116161425870895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.116161425870895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.116161425870895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.116161425870895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.116161425870895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.116161425870895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.116161425870895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116161425870895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116161425870895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116161425870895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116161425870895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116161425870895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116161425870895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116161425870895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116161425870895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.102985927042082 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.102985927042082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.102985927042082 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.102985927042082 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0926873343378736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0926873343378736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0926873343378736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0926873343378736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0926873343378736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0926873343378736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0926873343378736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0926873343378736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0926873343378736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0926873343378736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0926873343378736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0926873343378736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0926873343378736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0926873343378736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0926873343378736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0926873343378736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0926873343378736 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0978366306899777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0978366306899777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0978366306899777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0978366306899777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0978366306899777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0978366306899777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0978366306899777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0978366306899777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0978366306899777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0978366306899777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0978366306899777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0978366306899777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0978366306899777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0978366306899777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0978366306899777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0978366306899777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0978366306899777 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.10041127886603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.10041127886603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.10041127886603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.10041127886603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.10041127886603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.10041127886603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.10041127886603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.10041127886603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.10041127886603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.10041127886603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.10041127886603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.10041127886603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.10041127886603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.10041127886603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.10041127886603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.10041127886603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.10041127886603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101698602954056 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.101698602954056 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.101698602954056 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.101698602954056 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.101698602954056 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.101698602954056 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.101698602954056 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.101698602954056 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.101698602954056 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101698602954056 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101698602954056 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101698602954056 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101698602954056 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101698602954056 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101698602954056 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101698602954056 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101698602954056 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102985927042082 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102985927042082 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102985927042082 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102985927042082 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102985927042082 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102985927042082 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102985927042082 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102985927042082 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102985927042082 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102985927042082 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102985927042082 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102985927042082 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102985927042082 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102985927042082 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102985927042082 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102985927042082 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.102985927042082 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.173422741426414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.173422741426414 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.173422741426414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.173422741426414 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.156080467283773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.156080467283773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.156080467283773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.156080467283773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.156080467283773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.156080467283773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.156080467283773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.156080467283773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.156080467283773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.156080467283773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.156080467283773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.156080467283773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.156080467283773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.156080467283773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.156080467283773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.156080467283773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.156080467283773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.164751604355093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.164751604355093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.164751604355093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.164751604355093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.164751604355093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.164751604355093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.164751604355093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.164751604355093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.164751604355093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.164751604355093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.164751604355093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.164751604355093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.164751604355093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.164751604355093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.164751604355093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.164751604355093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.164751604355093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.169087172890754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.169087172890754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.169087172890754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.169087172890754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.169087172890754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.169087172890754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.169087172890754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.169087172890754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.169087172890754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.169087172890754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.169087172890754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.169087172890754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.169087172890754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.169087172890754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.169087172890754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.169087172890754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.169087172890754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.171254957158584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.171254957158584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.171254957158584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.171254957158584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.171254957158584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.171254957158584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.171254957158584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.171254957158584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.171254957158584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.171254957158584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.171254957158584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.171254957158584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.171254957158584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.171254957158584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.171254957158584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.171254957158584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.171254957158584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173422741426414 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.173422741426414 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.173422741426414 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.173422741426414 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.173422741426414 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.173422741426414 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.173422741426414 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.173422741426414 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.173422741426414 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.173422741426414 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.173422741426414 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.173422741426414 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173422741426414 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.173422741426414 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.173422741426414 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.173422741426414 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.173422741426414 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34193096890965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34193096890965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34193096890965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34193096890965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.10773787201868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.10773787201868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.10773787201868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.10773787201868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.10773787201868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.10773787201868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.10773787201868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.10773787201868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.10773787201868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.10773787201868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.10773787201868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.10773787201868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.10773787201868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.10773787201868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.10773787201868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.10773787201868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.10773787201868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.22483442046417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.22483442046417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.22483442046417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.22483442046417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.22483442046417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.22483442046417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.22483442046417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.22483442046417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.22483442046417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.22483442046417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.22483442046417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.22483442046417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.22483442046417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.22483442046417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.22483442046417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.22483442046417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.22483442046417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28338269468691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.28338269468691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.28338269468691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28338269468691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28338269468691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.28338269468691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28338269468691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28338269468691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28338269468691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28338269468691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28338269468691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28338269468691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28338269468691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28338269468691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28338269468691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28338269468691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28338269468691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.31265683179828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.31265683179828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.31265683179828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.31265683179828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.31265683179828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.31265683179828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.31265683179828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.31265683179828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.31265683179828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.31265683179828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.31265683179828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.31265683179828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.31265683179828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.31265683179828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.31265683179828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.31265683179828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.31265683179828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34193096890965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.34193096890965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.34193096890965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34193096890965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34193096890965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34193096890965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34193096890965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34193096890965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34193096890965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34193096890965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34193096890965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34193096890965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34193096890965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34193096890965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34193096890965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34193096890965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34193096890965 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.425584642237501 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.425584642237501 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.425584642237501 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.425584642237501 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468143106461251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.468143106461251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.468143106461251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.468143106461251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.468143106461251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.468143106461251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.468143106461251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.468143106461251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.468143106461251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.468143106461251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.468143106461251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468143106461251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468143106461251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468143106461251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.468143106461251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.468143106461251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.468143106461251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446863874349376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.446863874349376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.446863874349376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.446863874349376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.446863874349376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.446863874349376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446863874349376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446863874349376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446863874349376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446863874349376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446863874349376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446863874349376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446863874349376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446863874349376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446863874349376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446863874349376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446863874349376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436224258293439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.436224258293439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.436224258293439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.436224258293439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.436224258293439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.436224258293439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.436224258293439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.436224258293439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.436224258293439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.436224258293439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.436224258293439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.436224258293439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436224258293439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.436224258293439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.436224258293439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.436224258293439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.436224258293439 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43090445026547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.43090445026547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.43090445026547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.43090445026547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.43090445026547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.43090445026547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.43090445026547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.43090445026547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.43090445026547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.43090445026547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.43090445026547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.43090445026547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43090445026547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.43090445026547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.43090445026547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.43090445026547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.43090445026547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425584642237501 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.425584642237501 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.425584642237501 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.425584642237501 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.425584642237501 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.425584642237501 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.425584642237501 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.425584642237501 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.425584642237501 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.425584642237501 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.425584642237501 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.425584642237501 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.425584642237501 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.425584642237501 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.425584642237501 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.425584642237501 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.425584642237501 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357152328469952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357152328469952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357152328469952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357152328469952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0321437095622957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0321437095622957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0321437095622957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0321437095622957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0321437095622957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0321437095622957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0321437095622957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0321437095622957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0321437095622957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0321437095622957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0321437095622957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0321437095622957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0321437095622957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0321437095622957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0321437095622957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0321437095622957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0321437095622957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0339294712046454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0339294712046454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0339294712046454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0339294712046454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0339294712046454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0339294712046454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0339294712046454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0339294712046454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0339294712046454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0339294712046454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0339294712046454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0339294712046454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0339294712046454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0339294712046454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0339294712046454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0339294712046454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0339294712046454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0348223520258203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0348223520258203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0348223520258203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0348223520258203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0348223520258203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0348223520258203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0348223520258203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0348223520258203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0348223520258203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0348223520258203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0348223520258203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0348223520258203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0348223520258203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0348223520258203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0348223520258203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0348223520258203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0348223520258203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0352687924364078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0352687924364078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0352687924364078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0352687924364078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0352687924364078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0352687924364078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0352687924364078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0352687924364078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0352687924364078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0352687924364078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0352687924364078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0352687924364078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0352687924364078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0352687924364078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0352687924364078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0352687924364078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0352687924364078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357152328469952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0357152328469952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0357152328469952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0357152328469952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0357152328469952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0357152328469952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357152328469952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357152328469952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357152328469952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357152328469952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357152328469952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357152328469952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357152328469952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357152328469952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357152328469952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357152328469952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357152328469952 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0208446554439038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0208446554439038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0208446554439038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0208446554439038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0229291209882942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0229291209882942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0229291209882942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0229291209882942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0229291209882942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0229291209882942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0229291209882942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0229291209882942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0229291209882942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0229291209882942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0229291209882942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0229291209882942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0229291209882942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0229291209882942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0229291209882942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0229291209882942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0229291209882942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.021886888216099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.021886888216099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.021886888216099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.021886888216099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.021886888216099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.021886888216099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.021886888216099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.021886888216099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.021886888216099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.021886888216099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.021886888216099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.021886888216099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.021886888216099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.021886888216099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.021886888216099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.021886888216099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.021886888216099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0213657718300014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0213657718300014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0213657718300014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0213657718300014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0213657718300014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0213657718300014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0213657718300014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0213657718300014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0213657718300014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0213657718300014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0213657718300014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0213657718300014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0213657718300014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0213657718300014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0213657718300014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0213657718300014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0213657718300014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0211052136369526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0211052136369526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0211052136369526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0211052136369526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0211052136369526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0211052136369526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0211052136369526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0211052136369526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0211052136369526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0211052136369526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0211052136369526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0211052136369526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0211052136369526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0211052136369526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0211052136369526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0211052136369526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0211052136369526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0208446554439038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0208446554439038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0208446554439038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0208446554439038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0208446554439038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0208446554439038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0208446554439038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0208446554439038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0208446554439038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0208446554439038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0208446554439038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0208446554439038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0208446554439038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0208446554439038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0208446554439038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0208446554439038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0208446554439038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353323580988497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353323580988497 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353323580988497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353323580988497 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317991222889647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.317991222889647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.317991222889647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.317991222889647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.317991222889647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.317991222889647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.317991222889647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.317991222889647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.317991222889647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.317991222889647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.317991222889647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.317991222889647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317991222889647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.317991222889647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.317991222889647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.317991222889647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.317991222889647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.335657401939072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.335657401939072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.335657401939072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.335657401939072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.335657401939072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.335657401939072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.335657401939072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.335657401939072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.335657401939072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.335657401939072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.335657401939072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.335657401939072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.335657401939072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.335657401939072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.335657401939072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.335657401939072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.335657401939072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344490491463785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.344490491463785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.344490491463785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.344490491463785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.344490491463785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.344490491463785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.344490491463785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.344490491463785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.344490491463785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.344490491463785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.344490491463785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.344490491463785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344490491463785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.344490491463785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.344490491463785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.344490491463785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.344490491463785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348907036226141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.348907036226141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.348907036226141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.348907036226141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.348907036226141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.348907036226141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.348907036226141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.348907036226141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.348907036226141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.348907036226141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348907036226141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.348907036226141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348907036226141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.348907036226141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.348907036226141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.348907036226141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.348907036226141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353323580988497 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.353323580988497 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.353323580988497 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.353323580988497 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.353323580988497 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.353323580988497 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.353323580988497 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.353323580988497 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.353323580988497 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.353323580988497 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.353323580988497 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.353323580988497 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353323580988497 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.353323580988497 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.353323580988497 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.353323580988497 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353323580988497 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0461051194799014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0461051194799014 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0461051194799014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0461051194799014 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0507156314278915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0507156314278915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0507156314278915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0507156314278915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0507156314278915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0507156314278915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0507156314278915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0507156314278915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0507156314278915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0507156314278915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0507156314278915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0507156314278915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0507156314278915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0507156314278915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0507156314278915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0507156314278915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0507156314278915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0484103754538964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0484103754538964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0484103754538964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0484103754538964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0484103754538964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0484103754538964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0484103754538964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0484103754538964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0484103754538964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0484103754538964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0484103754538964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0484103754538964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0484103754538964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0484103754538964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0484103754538964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0484103754538964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0484103754538964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0472577474668989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0472577474668989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0472577474668989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0472577474668989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0472577474668989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0472577474668989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0472577474668989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0472577474668989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0472577474668989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0472577474668989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0472577474668989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0472577474668989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0472577474668989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0472577474668989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0472577474668989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0472577474668989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0472577474668989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0466814334734001 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0466814334734001 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0466814334734001 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0466814334734001 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0466814334734001 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0466814334734001 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0466814334734001 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0466814334734001 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0466814334734001 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0466814334734001 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0466814334734001 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0466814334734001 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0466814334734001 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0466814334734001 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0466814334734001 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0466814334734001 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0466814334734001 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0461051194799014 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0461051194799014 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0461051194799014 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0461051194799014 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0461051194799014 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0461051194799014 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0461051194799014 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0461051194799014 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0461051194799014 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0461051194799014 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0461051194799014 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0461051194799014 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0461051194799014 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0461051194799014 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0461051194799014 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0461051194799014 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0461051194799014 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7443330312836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7443330312836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7443330312836 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7443330312836 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.01876633441196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.88154968284778 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.81294135706569 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.77863719417464 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7443330312836 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7443330312836 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.256553051967972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.256553051967972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.256553051967972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.256553051967972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.230897746771175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.243725399369574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.250139225668773 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253346138818373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.256553051967972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.256553051967972 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.72527706111333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.72527706111333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.72527706111333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.72527706111333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.99780476722466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.99780476722466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.99780476722466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.99780476722466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.99780476722466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.99780476722466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.99780476722466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.99780476722466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.99780476722466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.99780476722466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.99780476722466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.99780476722466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.99780476722466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.99780476722466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.99780476722466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.99780476722466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.99780476722466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86154091416899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.86154091416899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.86154091416899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.86154091416899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.86154091416899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.86154091416899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.86154091416899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.86154091416899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.86154091416899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.86154091416899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86154091416899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.86154091416899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.86154091416899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.86154091416899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.86154091416899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.86154091416899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.86154091416899 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.79340898764116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.79340898764116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.79340898764116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.79340898764116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.79340898764116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.79340898764116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.79340898764116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.79340898764116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.79340898764116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.79340898764116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.79340898764116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.79340898764116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.79340898764116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.79340898764116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.79340898764116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.79340898764116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.79340898764116 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.75934302437724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.75934302437724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.75934302437724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.75934302437724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.75934302437724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.75934302437724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.75934302437724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.75934302437724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.75934302437724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.75934302437724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.75934302437724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.75934302437724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.75934302437724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.75934302437724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.75934302437724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.75934302437724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.75934302437724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72527706111333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.72527706111333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.72527706111333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.72527706111333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.72527706111333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.72527706111333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.72527706111333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.72527706111333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.72527706111333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.72527706111333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72527706111333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.72527706111333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.72527706111333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.72527706111333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.72527706111333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.72527706111333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.72527706111333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06819044504031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06819044504031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06819044504031 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06819044504031 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.37500948954434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.37500948954434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.37500948954434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.37500948954434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.37500948954434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.37500948954434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.37500948954434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.37500948954434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.37500948954434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.37500948954434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.37500948954434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.37500948954434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.37500948954434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.37500948954434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.37500948954434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.37500948954434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.37500948954434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.22159996729232 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.22159996729232 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.22159996729232 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.22159996729232 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.22159996729232 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.22159996729232 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.22159996729232 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.22159996729232 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.22159996729232 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.22159996729232 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.22159996729232 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.22159996729232 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22159996729232 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22159996729232 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22159996729232 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.22159996729232 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.22159996729232 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14489520616632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.14489520616632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.14489520616632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.14489520616632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.14489520616632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.14489520616632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.14489520616632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14489520616632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14489520616632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14489520616632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14489520616632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14489520616632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14489520616632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14489520616632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14489520616632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14489520616632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14489520616632 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.10654282560331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.10654282560331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.10654282560331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.10654282560331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.10654282560331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.10654282560331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.10654282560331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.10654282560331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.10654282560331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.10654282560331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.10654282560331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.10654282560331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.10654282560331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.10654282560331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.10654282560331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.10654282560331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.10654282560331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06819044504031 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.06819044504031 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.06819044504031 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.06819044504031 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.06819044504031 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.06819044504031 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.06819044504031 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.06819044504031 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06819044504031 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06819044504031 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06819044504031 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06819044504031 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06819044504031 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06819044504031 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06819044504031 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06819044504031 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06819044504031 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0993895069576577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0993895069576577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0993895069576577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0993895069576577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0894505562618919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0894505562618919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0894505562618919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0894505562618919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0894505562618919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0894505562618919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0894505562618919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0894505562618919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0894505562618919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0894505562618919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0894505562618919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0894505562618919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0894505562618919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0894505562618919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0894505562618919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0894505562618919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0894505562618919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0944200316097748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0944200316097748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0944200316097748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0944200316097748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0944200316097748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0944200316097748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0944200316097748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0944200316097748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0944200316097748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0944200316097748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0944200316097748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0944200316097748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0944200316097748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0944200316097748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0944200316097748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0944200316097748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0944200316097748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969047692837163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0969047692837163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0969047692837163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0969047692837163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0969047692837163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0969047692837163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0969047692837163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0969047692837163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0969047692837163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0969047692837163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0969047692837163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0969047692837163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0969047692837163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969047692837163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0969047692837163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0969047692837163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0969047692837163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.098147138120687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.098147138120687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.098147138120687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.098147138120687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.098147138120687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.098147138120687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.098147138120687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.098147138120687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.098147138120687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.098147138120687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.098147138120687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.098147138120687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.098147138120687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.098147138120687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.098147138120687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.098147138120687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.098147138120687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0993895069576577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0993895069576577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0993895069576577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0993895069576577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0993895069576577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0993895069576577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0993895069576577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0993895069576577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0993895069576577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0993895069576577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0993895069576577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0993895069576577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0993895069576577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0993895069576577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0993895069576577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0993895069576577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0993895069576577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.130792566692605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.130792566692605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.130792566692605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.130792566692605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143871823361866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.143871823361866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.143871823361866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.143871823361866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.143871823361866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.143871823361866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.143871823361866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.143871823361866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.143871823361866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.143871823361866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.143871823361866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.143871823361866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.143871823361866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.143871823361866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.143871823361866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.143871823361866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.143871823361866 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.137332195027235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.137332195027235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.137332195027235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.137332195027235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.137332195027235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.137332195027235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.137332195027235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.137332195027235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.137332195027235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.137332195027235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.137332195027235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.137332195027235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.137332195027235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.137332195027235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.137332195027235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.137332195027235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.137332195027235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.13406238085992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.13406238085992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.13406238085992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.13406238085992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.13406238085992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.13406238085992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.13406238085992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.13406238085992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.13406238085992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.13406238085992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.13406238085992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.13406238085992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.13406238085992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.13406238085992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.13406238085992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.13406238085992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.13406238085992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.132427473776263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.132427473776263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.132427473776263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.132427473776263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.132427473776263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.132427473776263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.132427473776263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.132427473776263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.132427473776263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.132427473776263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.132427473776263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.132427473776263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.132427473776263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.132427473776263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.132427473776263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.132427473776263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.132427473776263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130792566692605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.130792566692605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.130792566692605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.130792566692605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.130792566692605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.130792566692605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.130792566692605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.130792566692605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.130792566692605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.130792566692605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.130792566692605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.130792566692605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.130792566692605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.130792566692605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.130792566692605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.130792566692605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.130792566692605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.348942081086656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.348942081086656 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.348942081086656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.348942081086656 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.31404787297799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.31404787297799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.31404787297799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.31404787297799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.31404787297799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.31404787297799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.31404787297799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.31404787297799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.31404787297799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.31404787297799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.31404787297799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.31404787297799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.31404787297799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.31404787297799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.31404787297799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.31404787297799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.31404787297799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.331494977032323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.331494977032323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.331494977032323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.331494977032323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.331494977032323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.331494977032323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.331494977032323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.331494977032323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.331494977032323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.331494977032323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.331494977032323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.331494977032323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.331494977032323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.331494977032323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.331494977032323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.331494977032323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.331494977032323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340218529059489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.340218529059489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.340218529059489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.340218529059489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.340218529059489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.340218529059489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.340218529059489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.340218529059489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.340218529059489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.340218529059489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.340218529059489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.340218529059489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.340218529059489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340218529059489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.340218529059489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.340218529059489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.340218529059489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344580305073073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.344580305073073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.344580305073073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.344580305073073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.344580305073073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.344580305073073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.344580305073073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.344580305073073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.344580305073073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.344580305073073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.344580305073073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.344580305073073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.344580305073073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344580305073073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.344580305073073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.344580305073073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.344580305073073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348942081086656 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.348942081086656 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.348942081086656 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.348942081086656 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.348942081086656 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.348942081086656 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.348942081086656 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.348942081086656 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.348942081086656 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.348942081086656 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.348942081086656 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348942081086656 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.348942081086656 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348942081086656 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.348942081086656 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.348942081086656 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.348942081086656 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.337982503065314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.337982503065314 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.337982503065314 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.337982503065314 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.304184252758782 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321083377912048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.329532940488681 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333757721776997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337982503065314 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.337982503065314 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212948357990371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212948357990371 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212948357990371 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212948357990371 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191653522191334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.202300940090852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.207624649040612 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210286503515491 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212948357990371 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212948357990371 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.2104367974382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.2104367974382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.2104367974382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.2104367974382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.98939311769438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.98939311769438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.98939311769438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.98939311769438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.98939311769438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.98939311769438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.98939311769438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.98939311769438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.98939311769438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.98939311769438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.98939311769438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.98939311769438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.98939311769438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.98939311769438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.98939311769438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.98939311769438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.98939311769438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.09991495756629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.09991495756629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.09991495756629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.09991495756629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.09991495756629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.09991495756629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.09991495756629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.09991495756629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.09991495756629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.09991495756629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.09991495756629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.09991495756629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.09991495756629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.09991495756629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.09991495756629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09991495756629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.09991495756629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.15517587750225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.15517587750225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.15517587750225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.15517587750225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.15517587750225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.15517587750225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.15517587750225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.15517587750225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.15517587750225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.15517587750225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.15517587750225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.15517587750225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.15517587750225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.15517587750225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.15517587750225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.15517587750225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.15517587750225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.18280633747022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.18280633747022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.18280633747022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.18280633747022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.18280633747022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.18280633747022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.18280633747022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.18280633747022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.18280633747022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.18280633747022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.18280633747022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.18280633747022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.18280633747022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.18280633747022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.18280633747022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.18280633747022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.18280633747022 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.2104367974382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.2104367974382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.2104367974382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.2104367974382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.2104367974382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.2104367974382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.2104367974382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.2104367974382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.2104367974382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.2104367974382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.2104367974382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.2104367974382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.2104367974382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.2104367974382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.2104367974382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.2104367974382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.2104367974382 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32760809983771 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32760809983771 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32760809983771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32760809983771 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.56036890982148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.56036890982148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.56036890982148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.56036890982148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.56036890982148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.56036890982148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.56036890982148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.56036890982148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.56036890982148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.56036890982148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.56036890982148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.56036890982148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56036890982148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56036890982148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.56036890982148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.56036890982148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.56036890982148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.4439885048296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.4439885048296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.4439885048296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.4439885048296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.4439885048296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.4439885048296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.4439885048296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.4439885048296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.4439885048296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.4439885048296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.4439885048296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.4439885048296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.4439885048296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.4439885048296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.4439885048296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.4439885048296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.4439885048296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38579830233365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.38579830233365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.38579830233365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.38579830233365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.38579830233365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.38579830233365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.38579830233365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.38579830233365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.38579830233365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.38579830233365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.38579830233365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38579830233365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38579830233365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38579830233365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.38579830233365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.38579830233365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.38579830233365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35670320108568 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35670320108568 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35670320108568 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35670320108568 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35670320108568 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35670320108568 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35670320108568 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35670320108568 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35670320108568 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35670320108568 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35670320108568 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35670320108568 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35670320108568 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35670320108568 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35670320108568 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35670320108568 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35670320108568 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32760809983771 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.32760809983771 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.32760809983771 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.32760809983771 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.32760809983771 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.32760809983771 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.32760809983771 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32760809983771 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32760809983771 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32760809983771 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32760809983771 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32760809983771 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32760809983771 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32760809983771 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32760809983771 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32760809983771 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32760809983771 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.73214505843107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.73214505843107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.73214505843107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.73214505843107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.90535956427418 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.90535956427418 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.90535956427418 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.90535956427418 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.90535956427418 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.90535956427418 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.90535956427418 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.90535956427418 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.90535956427418 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.90535956427418 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.90535956427418 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.90535956427418 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.90535956427418 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.90535956427418 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.90535956427418 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.90535956427418 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.90535956427418 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.81875231135263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.81875231135263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.81875231135263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.81875231135263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.81875231135263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.81875231135263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.81875231135263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.81875231135263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.81875231135263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.81875231135263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.81875231135263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.81875231135263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.81875231135263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.81875231135263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.81875231135263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.81875231135263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.81875231135263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.77544868489185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.77544868489185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.77544868489185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.77544868489185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.77544868489185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.77544868489185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.77544868489185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.77544868489185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.77544868489185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.77544868489185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.77544868489185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.77544868489185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.77544868489185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.77544868489185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.77544868489185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.77544868489185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.77544868489185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.75379687166146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.75379687166146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.75379687166146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.75379687166146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.75379687166146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.75379687166146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.75379687166146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.75379687166146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.75379687166146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.75379687166146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.75379687166146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.75379687166146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.75379687166146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.75379687166146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.75379687166146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.75379687166146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.75379687166146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.73214505843107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.73214505843107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.73214505843107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.73214505843107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.73214505843107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.73214505843107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.73214505843107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.73214505843107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.73214505843107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.73214505843107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.73214505843107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.73214505843107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.73214505843107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.73214505843107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.73214505843107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.73214505843107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.73214505843107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.05917173360429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.05917173360429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.05917173360429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.05917173360429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.26508890696472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.26508890696472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.26508890696472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.26508890696472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.26508890696472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.26508890696472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.26508890696472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.26508890696472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.26508890696472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.26508890696472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.26508890696472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.26508890696472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.26508890696472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.26508890696472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.26508890696472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.26508890696472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.26508890696472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.16213032028451 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.16213032028451 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.16213032028451 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.16213032028451 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.16213032028451 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.16213032028451 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.16213032028451 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.16213032028451 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.16213032028451 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.16213032028451 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.16213032028451 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.16213032028451 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.16213032028451 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.16213032028451 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.16213032028451 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.16213032028451 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.16213032028451 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.1106510269444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.1106510269444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.1106510269444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.1106510269444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.1106510269444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.1106510269444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.1106510269444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.1106510269444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.1106510269444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.1106510269444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.1106510269444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.1106510269444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.1106510269444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.1106510269444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.1106510269444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.1106510269444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.1106510269444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.08491138027434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.08491138027434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.08491138027434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.08491138027434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.08491138027434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.08491138027434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.08491138027434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.08491138027434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.08491138027434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.08491138027434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.08491138027434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.08491138027434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.08491138027434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.08491138027434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.08491138027434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.08491138027434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.08491138027434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05917173360429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.05917173360429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.05917173360429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.05917173360429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.05917173360429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.05917173360429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.05917173360429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.05917173360429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.05917173360429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.05917173360429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.05917173360429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05917173360429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.05917173360429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.05917173360429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.05917173360429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.05917173360429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.05917173360429 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.375197663836512 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.375197663836512 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.375197663836512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.375197663836512 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.33767789745286 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.356437780644686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365817722240599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.370507693038555 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.375197663836512 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0319263650368078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0319263650368078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0319263650368078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0319263650368078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.028733728533127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0303300467849674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0311282059108876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0315272854738477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0319263650368078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.232053826048165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.232053826048165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.232053826048165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.232053826048165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.208848443443349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.220451134745757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.226252480396961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229153153222563 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.232053826048165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.232053826048165 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.347823366193224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.347823366193224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.347823366193224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.347823366193224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.313041029573901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.313041029573901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.313041029573901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.313041029573901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.313041029573901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.313041029573901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.313041029573901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.313041029573901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.313041029573901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.313041029573901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.313041029573901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.313041029573901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.313041029573901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.313041029573901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.313041029573901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.313041029573901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.313041029573901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.330432197883562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.330432197883562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.330432197883562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.330432197883562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.330432197883562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.330432197883562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.330432197883562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.330432197883562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.330432197883562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.330432197883562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.330432197883562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.330432197883562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.330432197883562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.330432197883562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.330432197883562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.330432197883562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.330432197883562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339127782038393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.339127782038393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.339127782038393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.339127782038393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.339127782038393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.339127782038393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.339127782038393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.339127782038393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.339127782038393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.339127782038393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.339127782038393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.339127782038393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.339127782038393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339127782038393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.339127782038393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.339127782038393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.339127782038393 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343475574115808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.343475574115808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.343475574115808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.343475574115808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.343475574115808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.343475574115808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.343475574115808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.343475574115808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.343475574115808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.343475574115808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.343475574115808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.343475574115808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.343475574115808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343475574115808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.343475574115808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.343475574115808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.343475574115808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347823366193224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.347823366193224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.347823366193224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.347823366193224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.347823366193224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.347823366193224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.347823366193224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.347823366193224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.347823366193224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.347823366193224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.347823366193224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.347823366193224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.347823366193224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347823366193224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.347823366193224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.347823366193224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.347823366193224 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0738201784521323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0738201784521323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0738201784521323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0738201784521323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0812021962973455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0812021962973455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0812021962973455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0812021962973455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0812021962973455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0812021962973455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0812021962973455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0812021962973455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0812021962973455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0812021962973455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0812021962973455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0812021962973455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0812021962973455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0812021962973455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0812021962973455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0812021962973455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0812021962973455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0775111873747389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0775111873747389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0775111873747389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0775111873747389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0775111873747389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0775111873747389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0775111873747389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0775111873747389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0775111873747389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0775111873747389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0775111873747389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0775111873747389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0775111873747389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0775111873747389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0775111873747389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0775111873747389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0775111873747389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0756656829134356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0756656829134356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0756656829134356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0756656829134356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0756656829134356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0756656829134356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0756656829134356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0756656829134356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0756656829134356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0756656829134356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0756656829134356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0756656829134356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0756656829134356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0756656829134356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0756656829134356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0756656829134356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0756656829134356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0747429306827839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0747429306827839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0747429306827839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0747429306827839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0747429306827839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0747429306827839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0747429306827839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0747429306827839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0747429306827839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0747429306827839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0747429306827839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0747429306827839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0747429306827839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0747429306827839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0747429306827839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0747429306827839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0747429306827839 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738201784521323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0738201784521323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0738201784521323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0738201784521323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0738201784521323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0738201784521323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0738201784521323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0738201784521323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0738201784521323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0738201784521323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0738201784521323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0738201784521323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0738201784521323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0738201784521323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0738201784521323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0738201784521323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0738201784521323 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847002112189898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847002112189898 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847002112189898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847002112189898 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0931702323408888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0931702323408888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0931702323408888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0931702323408888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0931702323408888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0931702323408888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0931702323408888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0931702323408888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0931702323408888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0931702323408888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0931702323408888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0931702323408888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0931702323408888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0931702323408888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0931702323408888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0931702323408888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0931702323408888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0889352217799393 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0889352217799393 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0889352217799393 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0889352217799393 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0889352217799393 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0889352217799393 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0889352217799393 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0889352217799393 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0889352217799393 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0889352217799393 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0889352217799393 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0889352217799393 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0889352217799393 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0889352217799393 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0889352217799393 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0889352217799393 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0889352217799393 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0868177164994645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0868177164994645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0868177164994645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0868177164994645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0868177164994645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0868177164994645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0868177164994645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0868177164994645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0868177164994645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0868177164994645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0868177164994645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0868177164994645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0868177164994645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0868177164994645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0868177164994645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0868177164994645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0868177164994645 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0857589638592272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0857589638592272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0857589638592272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0857589638592272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0857589638592272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0857589638592272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0857589638592272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0857589638592272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0857589638592272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0857589638592272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0857589638592272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0857589638592272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0857589638592272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0857589638592272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0857589638592272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0857589638592272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0857589638592272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847002112189898 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0847002112189898 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0847002112189898 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0847002112189898 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0847002112189898 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0847002112189898 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0847002112189898 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0847002112189898 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0847002112189898 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0847002112189898 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847002112189898 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847002112189898 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847002112189898 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847002112189898 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847002112189898 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847002112189898 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847002112189898 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.3233385749841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.3233385749841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.3233385749841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.3233385749841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.55567243248251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.43950550373331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.38142203935871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35238030717141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3233385749841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3233385749841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3233385749841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3233385749841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3233385749841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3233385749841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3233385749841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3233385749841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3233385749841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3233385749841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3233385749841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3233385749841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3233385749841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3233385749841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3233385749841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3233385749841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3233385749841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3233385749841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.3233385749841 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99999304178396 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99999304178396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99999304178396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99999304178396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.39999234596236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.39999234596236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.39999234596236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.39999234596236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.39999234596236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.39999234596236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.39999234596236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.39999234596236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.39999234596236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.39999234596236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.39999234596236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.39999234596236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.39999234596236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.39999234596236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.39999234596236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.39999234596236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.39999234596236 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.19999269387316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.19999269387316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.19999269387316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.19999269387316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.19999269387316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.19999269387316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.19999269387316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.19999269387316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.19999269387316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.19999269387316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.19999269387316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.19999269387316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.19999269387316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.19999269387316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.19999269387316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.19999269387316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.19999269387316 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.09999286782856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.09999286782856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.09999286782856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.09999286782856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.09999286782856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.09999286782856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.09999286782856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.09999286782856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.09999286782856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.09999286782856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.09999286782856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.09999286782856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.09999286782856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09999286782856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.09999286782856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.09999286782856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.09999286782856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.04999295480626 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.04999295480626 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.04999295480626 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.04999295480626 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.04999295480626 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.04999295480626 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.04999295480626 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.04999295480626 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.04999295480626 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.04999295480626 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.04999295480626 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.04999295480626 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.04999295480626 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.04999295480626 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.04999295480626 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.04999295480626 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.04999295480626 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99999304178396 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.99999304178396 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.99999304178396 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.99999304178396 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.99999304178396 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.99999304178396 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.99999304178396 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.99999304178396 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.99999304178396 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99999304178396 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99999304178396 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99999304178396 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99999304178396 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99999304178396 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99999304178396 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99999304178396 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99999304178396 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166279256741159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166279256741159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166279256741159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166279256741159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149651331067043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.149651331067043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.149651331067043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.149651331067043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.149651331067043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.149651331067043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.149651331067043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.149651331067043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.149651331067043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.149651331067043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149651331067043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149651331067043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149651331067043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149651331067043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149651331067043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149651331067043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149651331067043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157965293904101 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.157965293904101 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.157965293904101 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.157965293904101 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.157965293904101 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.157965293904101 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157965293904101 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157965293904101 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157965293904101 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157965293904101 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157965293904101 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157965293904101 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157965293904101 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157965293904101 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157965293904101 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157965293904101 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157965293904101 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16212227532263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.16212227532263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.16212227532263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.16212227532263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.16212227532263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.16212227532263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.16212227532263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.16212227532263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.16212227532263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.16212227532263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.16212227532263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.16212227532263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.16212227532263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16212227532263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.16212227532263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.16212227532263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.16212227532263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.164200766031894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.164200766031894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.164200766031894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.164200766031894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.164200766031894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.164200766031894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.164200766031894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.164200766031894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.164200766031894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.164200766031894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.164200766031894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.164200766031894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.164200766031894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.164200766031894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.164200766031894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.164200766031894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.164200766031894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166279256741159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.166279256741159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.166279256741159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.166279256741159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.166279256741159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.166279256741159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.166279256741159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.166279256741159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.166279256741159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.166279256741159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166279256741159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166279256741159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166279256741159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166279256741159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166279256741159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166279256741159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166279256741159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.355288013654365 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.355288013654365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.355288013654365 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.355288013654365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390816815019801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.390816815019801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.390816815019801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.390816815019801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.390816815019801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.390816815019801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.390816815019801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.390816815019801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390816815019801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390816815019801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390816815019801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390816815019801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390816815019801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390816815019801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390816815019801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390816815019801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390816815019801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.373052414337083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.373052414337083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.373052414337083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.373052414337083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.373052414337083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.373052414337083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.373052414337083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.373052414337083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.373052414337083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.373052414337083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.373052414337083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.373052414337083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.373052414337083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.373052414337083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.373052414337083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.373052414337083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.373052414337083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364170213995724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.364170213995724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.364170213995724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.364170213995724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.364170213995724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.364170213995724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.364170213995724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.364170213995724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.364170213995724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.364170213995724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.364170213995724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.364170213995724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.364170213995724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364170213995724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.364170213995724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.364170213995724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.364170213995724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.359729113825044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.359729113825044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.359729113825044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.359729113825044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.359729113825044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.359729113825044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.359729113825044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.359729113825044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.359729113825044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.359729113825044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.359729113825044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.359729113825044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.359729113825044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.359729113825044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.359729113825044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.359729113825044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.359729113825044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355288013654365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.355288013654365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.355288013654365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.355288013654365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.355288013654365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.355288013654365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.355288013654365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.355288013654365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.355288013654365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.355288013654365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.355288013654365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.355288013654365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.355288013654365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355288013654365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.355288013654365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.355288013654365 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.355288013654365 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0763707834240779 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0763707834240779 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0763707834240779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0763707834240779 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0687337050816701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.072552244252874 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0744615138384759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0754161486312769 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0763707834240779 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0763707834240779 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0461507247587883 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0461507247587883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0461507247587883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0461507247587883 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0415356522829095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0415356522829095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0415356522829095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0415356522829095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0415356522829095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0415356522829095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0415356522829095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0415356522829095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0415356522829095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0415356522829095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0415356522829095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0415356522829095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0415356522829095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0415356522829095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0415356522829095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0415356522829095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0415356522829095 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0438431885208489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0438431885208489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0438431885208489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0438431885208489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0438431885208489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0438431885208489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0438431885208489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0438431885208489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0438431885208489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0438431885208489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0438431885208489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0438431885208489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0438431885208489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0438431885208489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0438431885208489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0438431885208489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0438431885208489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0449969566398186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0449969566398186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0449969566398186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0449969566398186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0449969566398186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0449969566398186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0449969566398186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0449969566398186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0449969566398186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0449969566398186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0449969566398186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0449969566398186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0449969566398186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0449969566398186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0449969566398186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0449969566398186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0449969566398186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0455738406993035 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0455738406993035 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0455738406993035 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0455738406993035 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0455738406993035 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0455738406993035 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0455738406993035 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0455738406993035 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0455738406993035 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0455738406993035 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0455738406993035 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0455738406993035 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0455738406993035 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0455738406993035 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0455738406993035 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0455738406993035 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0455738406993035 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0461507247587883 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0461507247587883 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0461507247587883 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0461507247587883 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0461507247587883 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0461507247587883 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0461507247587883 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0461507247587883 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0461507247587883 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0461507247587883 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0461507247587883 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0461507247587883 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0461507247587883 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0461507247587883 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0461507247587883 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0461507247587883 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0461507247587883 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0900211015949028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0900211015949028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0900211015949028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0900211015949028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0810189914354125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0810189914354125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0810189914354125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0810189914354125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0810189914354125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0810189914354125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0810189914354125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0810189914354125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0810189914354125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0810189914354125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0810189914354125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0810189914354125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0810189914354125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0810189914354125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0810189914354125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0810189914354125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0810189914354125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0855200465151576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0855200465151576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0855200465151576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0855200465151576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0855200465151576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0855200465151576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0855200465151576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0855200465151576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0855200465151576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0855200465151576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0855200465151576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0855200465151576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0855200465151576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0855200465151576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0855200465151576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0855200465151576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0855200465151576 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0877705740550302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0877705740550302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0877705740550302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0877705740550302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0877705740550302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0877705740550302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0877705740550302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0877705740550302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0877705740550302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0877705740550302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0877705740550302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0877705740550302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0877705740550302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0877705740550302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0877705740550302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0877705740550302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0877705740550302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0888958378249665 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0888958378249665 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0888958378249665 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0888958378249665 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0888958378249665 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0888958378249665 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0888958378249665 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0888958378249665 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0888958378249665 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0888958378249665 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0888958378249665 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0888958378249665 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0888958378249665 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0888958378249665 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0888958378249665 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0888958378249665 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0888958378249665 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0900211015949028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0900211015949028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0900211015949028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0900211015949028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0900211015949028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0900211015949028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0900211015949028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0900211015949028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0900211015949028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0900211015949028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0900211015949028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0900211015949028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0900211015949028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0900211015949028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0900211015949028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0900211015949028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0900211015949028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.349684129445447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.349684129445447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.349684129445447 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.349684129445447 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314715716500902 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.314715716500902 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.314715716500902 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.314715716500902 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.314715716500902 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.314715716500902 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.314715716500902 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.314715716500902 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.314715716500902 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.314715716500902 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.314715716500902 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.314715716500902 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.314715716500902 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.314715716500902 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.314715716500902 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.314715716500902 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.314715716500902 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332199922973174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.332199922973174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.332199922973174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.332199922973174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.332199922973174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.332199922973174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.332199922973174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.332199922973174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.332199922973174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.332199922973174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.332199922973174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.332199922973174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.332199922973174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.332199922973174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.332199922973174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.332199922973174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.332199922973174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.34094202620931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.34094202620931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.34094202620931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.34094202620931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.34094202620931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.34094202620931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.34094202620931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.34094202620931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.34094202620931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.34094202620931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.34094202620931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.34094202620931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.34094202620931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.34094202620931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.34094202620931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.34094202620931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.34094202620931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.345313077827378 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.345313077827378 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.345313077827378 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.345313077827378 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.345313077827378 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.345313077827378 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.345313077827378 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.345313077827378 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.345313077827378 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.345313077827378 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.345313077827378 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.345313077827378 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.345313077827378 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.345313077827378 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.345313077827378 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.345313077827378 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.345313077827378 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349684129445447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.349684129445447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.349684129445447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.349684129445447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.349684129445447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.349684129445447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.349684129445447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.349684129445447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.349684129445447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.349684129445447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.349684129445447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.349684129445447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.349684129445447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349684129445447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.349684129445447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.349684129445447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.349684129445447 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.273010532267163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.273010532267163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.273010532267163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.273010532267163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30031158549388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30031158549388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30031158549388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30031158549388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30031158549388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30031158549388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30031158549388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30031158549388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30031158549388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30031158549388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30031158549388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30031158549388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30031158549388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30031158549388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30031158549388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30031158549388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30031158549388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.286661058880522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.286661058880522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.286661058880522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.286661058880522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.286661058880522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.286661058880522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.286661058880522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.286661058880522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.286661058880522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.286661058880522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.286661058880522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.286661058880522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.286661058880522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.286661058880522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.286661058880522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.286661058880522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.286661058880522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.279835795573843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.279835795573843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.279835795573843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.279835795573843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.279835795573843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.279835795573843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.279835795573843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.279835795573843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.279835795573843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.279835795573843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.279835795573843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.279835795573843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.279835795573843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.279835795573843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.279835795573843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.279835795573843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.279835795573843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276423163920503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.276423163920503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.276423163920503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.276423163920503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.276423163920503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.276423163920503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.276423163920503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.276423163920503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.276423163920503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.276423163920503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.276423163920503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.276423163920503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.276423163920503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276423163920503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.276423163920503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.276423163920503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.276423163920503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273010532267163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.273010532267163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.273010532267163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.273010532267163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.273010532267163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.273010532267163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.273010532267163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.273010532267163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.273010532267163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.273010532267163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.273010532267163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.273010532267163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.273010532267163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273010532267163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.273010532267163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.273010532267163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.273010532267163 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133848398890363 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133848398890363 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133848398890363 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133848398890363 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.120463559001327 -8.98152367223737e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127155978945845 -3.92494165402834e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.130502188918104 -1.39665064492382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132175293904233 -1.3250514037156e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.133848398890363 -8.86847279985572e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133848398890363 -8.86847279985572e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20366766134386 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20366766134386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20366766134386 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20366766134386 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32403442747824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32403442747824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.32403442747824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32403442747824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32403442747824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32403442747824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32403442747824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32403442747824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32403442747824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32403442747824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32403442747824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32403442747824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32403442747824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32403442747824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32403442747824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32403442747824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32403442747824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32403442747824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.26385104441105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.26385104441105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.26385104441105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.26385104441105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.26385104441105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.26385104441105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.26385104441105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.26385104441105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.26385104441105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.26385104441105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.26385104441105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.26385104441105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.26385104441105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.26385104441105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.26385104441105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.26385104441105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.26385104441105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.26385104441105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.23375935287745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.23375935287745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.23375935287745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.23375935287745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.23375935287745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.23375935287745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.23375935287745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.23375935287745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.23375935287745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.23375935287745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.23375935287745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.23375935287745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.23375935287745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.23375935287745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.23375935287745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.23375935287745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.23375935287745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.23375935287745 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.21871350711066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.21871350711066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.21871350711066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.21871350711066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.21871350711066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.21871350711066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.21871350711066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.21871350711066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.21871350711066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.21871350711066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.21871350711066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.21871350711066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.21871350711066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.21871350711066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.21871350711066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.21871350711066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.21871350711066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.21871350711066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.20366766134386 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.20366766134386 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.20366766134386 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.20366766134386 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20366766134386 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20366766134386 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20366766134386 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20366766134386 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20366766134386 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20366766134386 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20366766134386 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20366766134386 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20366766134386 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20366766134386 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20366766134386 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20366766134386 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.775327959583441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.775327959583441 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.775327959583441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.775327959583441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.852860755541785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.852860755541785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.852860755541785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.852860755541785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.852860755541785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.852860755541785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.852860755541785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.852860755541785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.852860755541785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.852860755541785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.852860755541785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.852860755541785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.852860755541785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.852860755541785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.852860755541785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.852860755541785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.852860755541785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.852860755541785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.814094357562613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.814094357562613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.814094357562613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.814094357562613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.814094357562613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.814094357562613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.814094357562613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.814094357562613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.814094357562613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.814094357562613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.814094357562613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.814094357562613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.814094357562613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.814094357562613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.814094357562613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.814094357562613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.814094357562613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.814094357562613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.794711158573027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.794711158573027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.794711158573027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.794711158573027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.794711158573027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.794711158573027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.794711158573027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.794711158573027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.794711158573027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.794711158573027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.794711158573027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.794711158573027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.794711158573027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.794711158573027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.794711158573027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.794711158573027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.794711158573027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.794711158573027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.785019559078234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.785019559078234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.785019559078234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.785019559078234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.785019559078234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.785019559078234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.785019559078234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.785019559078234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.785019559078234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.785019559078234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.785019559078234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.785019559078234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.785019559078234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.785019559078234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.785019559078234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.785019559078234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.785019559078234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.785019559078234 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.775327959583441 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.775327959583441 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.775327959583441 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.775327959583441 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.775327959583441 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.775327959583441 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.775327959583441 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.775327959583441 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.775327959583441 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.775327959583441 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.775327959583441 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.775327959583441 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.775327959583441 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.775327959583441 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.775327959583441 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.775327959583441 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.919254025670076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.919254025670076 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.919254025670076 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.919254025670076 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01117942823708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01117942823708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01117942823708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01117942823708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01117942823708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01117942823708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01117942823708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01117942823708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01117942823708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01117942823708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01117942823708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01117942823708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01117942823708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01117942823708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01117942823708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01117942823708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01117942823708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01117942823708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.96521672695358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.96521672695358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.96521672695358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.96521672695358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.96521672695358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.96521672695358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.96521672695358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.96521672695358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.96521672695358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.96521672695358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.96521672695358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.96521672695358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.96521672695358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.96521672695358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.96521672695358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.96521672695358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.96521672695358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.96521672695358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942235376311828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942235376311828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.942235376311828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.942235376311828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.942235376311828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.942235376311828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.942235376311828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.942235376311828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.942235376311828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.942235376311828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.942235376311828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.942235376311828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.942235376311828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942235376311828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.942235376311828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.942235376311828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.942235376311828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.942235376311828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930744700990952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930744700990952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.930744700990952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.930744700990952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.930744700990952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.930744700990952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.930744700990952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.930744700990952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.930744700990952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.930744700990952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.930744700990952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.930744700990952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.930744700990952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.930744700990952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.930744700990952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.930744700990952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.930744700990952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.930744700990952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.919254025670076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.919254025670076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.919254025670076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.919254025670076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.919254025670076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.919254025670076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.919254025670076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.919254025670076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.919254025670076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.919254025670076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.919254025670076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.919254025670076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.919254025670076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.919254025670076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.919254025670076 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.919254025670076 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.430835320501338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.430835320501338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.430835320501338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.430835320501338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387751788451204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.387751788451204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.387751788451204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.387751788451204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.387751788451204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.387751788451204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.387751788451204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.387751788451204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.387751788451204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387751788451204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387751788451204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387751788451204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387751788451204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387751788451204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387751788451204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387751788451204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387751788451204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409293554476271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.409293554476271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.409293554476271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.409293554476271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.409293554476271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.409293554476271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.409293554476271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.409293554476271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.409293554476271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.409293554476271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.409293554476271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.409293554476271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409293554476271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409293554476271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.409293554476271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.409293554476271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.409293554476271 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420064437488804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.420064437488804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.420064437488804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.420064437488804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.420064437488804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.420064437488804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.420064437488804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.420064437488804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.420064437488804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.420064437488804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.420064437488804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.420064437488804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.420064437488804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420064437488804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.420064437488804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.420064437488804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.420064437488804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425449878995071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.425449878995071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.425449878995071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.425449878995071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.425449878995071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.425449878995071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.425449878995071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.425449878995071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.425449878995071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.425449878995071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.425449878995071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.425449878995071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.425449878995071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425449878995071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.425449878995071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.425449878995071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.425449878995071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430835320501338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.430835320501338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.430835320501338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.430835320501338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.430835320501338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.430835320501338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.430835320501338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.430835320501338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.430835320501338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.430835320501338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.430835320501338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.430835320501338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.430835320501338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430835320501338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.430835320501338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.430835320501338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.430835320501338 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.250344346896968 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.250344346896968 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.250344346896968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.250344346896968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.225309912207272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23782712955212 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.244085738224544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.247215042560756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.250344346896968 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.250344346896968 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348892591662927 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348892591662927 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348892591662927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348892591662927 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38378185082922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.38378185082922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.38378185082922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.38378185082922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.38378185082922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.38378185082922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.38378185082922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.38378185082922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.38378185082922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.38378185082922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.38378185082922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.38378185082922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.38378185082922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.38378185082922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.38378185082922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.38378185082922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.38378185082922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.366337221246073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.366337221246073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.366337221246073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.366337221246073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.366337221246073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.366337221246073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.366337221246073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.366337221246073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.366337221246073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.366337221246073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.366337221246073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.366337221246073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.366337221246073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.366337221246073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.366337221246073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.366337221246073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.366337221246073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3576149064545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.3576149064545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.3576149064545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.3576149064545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.3576149064545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3576149064545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3576149064545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3576149064545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3576149064545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3576149064545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3576149064545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3576149064545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3576149064545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3576149064545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3576149064545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3576149064545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3576149064545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.353253749058713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.353253749058713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.353253749058713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.353253749058713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.353253749058713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.353253749058713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.353253749058713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.353253749058713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.353253749058713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.353253749058713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.353253749058713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.353253749058713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.353253749058713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.353253749058713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.353253749058713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.353253749058713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.353253749058713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348892591662927 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.348892591662927 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.348892591662927 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.348892591662927 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.348892591662927 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.348892591662927 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.348892591662927 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.348892591662927 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.348892591662927 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.348892591662927 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.348892591662927 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.348892591662927 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.348892591662927 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.348892591662927 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.348892591662927 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.348892591662927 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.348892591662927 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0919557392102859 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0919557392102859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0919557392102859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0919557392102859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.101151313131314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.101151313131314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.101151313131314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.101151313131314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.101151313131314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.101151313131314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.101151313131314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.101151313131314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.101151313131314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.101151313131314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.101151313131314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.101151313131314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.101151313131314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.101151313131314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.101151313131314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.101151313131314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.101151313131314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0965535261708002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0965535261708002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0965535261708002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0965535261708002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0965535261708002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0965535261708002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0965535261708002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0965535261708002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0965535261708002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0965535261708002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0965535261708002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0965535261708002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0965535261708002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0965535261708002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0965535261708002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0965535261708002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0965535261708002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.094254632690543 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.094254632690543 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.094254632690543 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.094254632690543 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.094254632690543 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.094254632690543 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.094254632690543 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.094254632690543 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.094254632690543 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.094254632690543 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.094254632690543 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.094254632690543 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.094254632690543 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.094254632690543 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.094254632690543 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.094254632690543 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.094254632690543 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0931051859504144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0931051859504144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0931051859504144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0931051859504144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0931051859504144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0931051859504144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0931051859504144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0931051859504144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0931051859504144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0931051859504144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0931051859504144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0931051859504144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0931051859504144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0931051859504144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0931051859504144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0931051859504144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0931051859504144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0919557392102859 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0919557392102859 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0919557392102859 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0919557392102859 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0919557392102859 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0919557392102859 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0919557392102859 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0919557392102859 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0919557392102859 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0919557392102859 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0919557392102859 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0919557392102859 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0919557392102859 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0919557392102859 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0919557392102859 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0919557392102859 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0919557392102859 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.445632941601113 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.445632941601113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.445632941601113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.445632941601113 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.490196235761224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467914588681169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456773765141141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.451203353371127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.445632941601113 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.445632941601113 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.92398495110676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.92398495110676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.92398495110676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.92398495110676 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.11638344621744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.11638344621744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.11638344621744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.11638344621744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.11638344621744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.11638344621744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.11638344621744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.11638344621744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.11638344621744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.11638344621744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.11638344621744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.11638344621744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.11638344621744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.11638344621744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.11638344621744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.11638344621744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.11638344621744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.0201841986621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.0201841986621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.0201841986621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.0201841986621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.0201841986621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.0201841986621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.0201841986621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.0201841986621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.0201841986621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.0201841986621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.0201841986621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.0201841986621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.0201841986621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.0201841986621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.0201841986621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.0201841986621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.0201841986621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97208457488443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97208457488443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97208457488443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97208457488443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97208457488443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97208457488443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97208457488443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97208457488443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97208457488443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97208457488443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97208457488443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97208457488443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97208457488443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97208457488443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97208457488443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97208457488443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97208457488443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.9480347629956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.9480347629956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.9480347629956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.9480347629956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.9480347629956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.9480347629956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.9480347629956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.9480347629956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.9480347629956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.9480347629956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.9480347629956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.9480347629956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.9480347629956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.9480347629956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.9480347629956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.9480347629956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.9480347629956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.92398495110676 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.92398495110676 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.92398495110676 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.92398495110676 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.92398495110676 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.92398495110676 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.92398495110676 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.92398495110676 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.92398495110676 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.92398495110676 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.92398495110676 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.92398495110676 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.92398495110676 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.92398495110676 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.92398495110676 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.92398495110676 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.92398495110676 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.19951357071499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.19951357071499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.19951357071499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.19951357071499 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.41946492778649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.41946492778649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.41946492778649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.41946492778649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.41946492778649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.41946492778649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.41946492778649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.41946492778649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.41946492778649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.41946492778649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.41946492778649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.41946492778649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.41946492778649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.41946492778649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.41946492778649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.41946492778649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.41946492778649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.30948924925074 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.30948924925074 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.30948924925074 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.30948924925074 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.30948924925074 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.30948924925074 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.30948924925074 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.30948924925074 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.30948924925074 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.30948924925074 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.30948924925074 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.30948924925074 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.30948924925074 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30948924925074 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30948924925074 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30948924925074 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.30948924925074 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25450140998286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.25450140998286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.25450140998286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.25450140998286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.25450140998286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.25450140998286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.25450140998286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.25450140998286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.25450140998286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.25450140998286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.25450140998286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.25450140998286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25450140998286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.25450140998286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.25450140998286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.25450140998286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.25450140998286 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22700749034892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.22700749034892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.22700749034892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.22700749034892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.22700749034892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.22700749034892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.22700749034892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.22700749034892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.22700749034892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.22700749034892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.22700749034892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.22700749034892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22700749034892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.22700749034892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.22700749034892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.22700749034892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.22700749034892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.19951357071499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.19951357071499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.19951357071499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.19951357071499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.19951357071499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.19951357071499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.19951357071499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.19951357071499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.19951357071499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.19951357071499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.19951357071499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.19951357071499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.19951357071499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.19951357071499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.19951357071499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.19951357071499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.19951357071499 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97288362494325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97288362494325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97288362494325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97288362494325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.17017198743757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.17017198743757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.17017198743757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.17017198743757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.17017198743757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.17017198743757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.17017198743757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.17017198743757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.17017198743757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.17017198743757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.17017198743757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.17017198743757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.17017198743757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.17017198743757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.17017198743757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.17017198743757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.17017198743757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.07152780619041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.07152780619041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.07152780619041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.07152780619041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.07152780619041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.07152780619041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.07152780619041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.07152780619041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.07152780619041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.07152780619041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.07152780619041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.07152780619041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.07152780619041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.07152780619041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.07152780619041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.07152780619041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.07152780619041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02220571556683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.02220571556683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.02220571556683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.02220571556683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.02220571556683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02220571556683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02220571556683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02220571556683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02220571556683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02220571556683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02220571556683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02220571556683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02220571556683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02220571556683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02220571556683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02220571556683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02220571556683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.99754467025504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.99754467025504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.99754467025504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.99754467025504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.99754467025504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.99754467025504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.99754467025504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.99754467025504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.99754467025504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.99754467025504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.99754467025504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.99754467025504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.99754467025504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.99754467025504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.99754467025504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.99754467025504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.99754467025504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97288362494325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97288362494325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97288362494325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97288362494325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97288362494325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97288362494325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97288362494325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97288362494325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97288362494325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97288362494325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97288362494325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97288362494325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97288362494325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97288362494325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97288362494325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97288362494325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97288362494325 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.24698908207123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.24698908207123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.24698908207123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.24698908207123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37168799027836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.37168799027836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.37168799027836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.37168799027836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.37168799027836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.37168799027836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37168799027836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37168799027836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37168799027836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37168799027836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37168799027836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37168799027836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37168799027836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37168799027836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37168799027836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37168799027836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37168799027836 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.30933853617479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.30933853617479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.30933853617479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.30933853617479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.30933853617479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.30933853617479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.30933853617479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.30933853617479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.30933853617479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.30933853617479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.30933853617479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.30933853617479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.30933853617479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.30933853617479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.30933853617479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.30933853617479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.30933853617479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.27816380912301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.27816380912301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.27816380912301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.27816380912301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.27816380912301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.27816380912301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.27816380912301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.27816380912301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.27816380912301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.27816380912301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.27816380912301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.27816380912301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.27816380912301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.27816380912301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.27816380912301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.27816380912301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.27816380912301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.26257644559712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.26257644559712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.26257644559712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.26257644559712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.26257644559712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.26257644559712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.26257644559712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.26257644559712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.26257644559712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.26257644559712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.26257644559712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.26257644559712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.26257644559712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.26257644559712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.26257644559712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.26257644559712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.26257644559712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24698908207123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.24698908207123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.24698908207123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.24698908207123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.24698908207123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.24698908207123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.24698908207123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.24698908207123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.24698908207123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.24698908207123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.24698908207123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.24698908207123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.24698908207123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24698908207123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.24698908207123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.24698908207123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.24698908207123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.13977597965295 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.13977597965295 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.13977597965295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.13977597965295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25375357761824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.25375357761824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.25375357761824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.25375357761824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.25375357761824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.25375357761824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.25375357761824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.25375357761824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.25375357761824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.25375357761824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.25375357761824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.25375357761824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.25375357761824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25375357761824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.25375357761824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.25375357761824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.25375357761824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.19676477863559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.19676477863559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.19676477863559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.19676477863559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.19676477863559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.19676477863559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.19676477863559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.19676477863559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.19676477863559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.19676477863559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.19676477863559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.19676477863559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.19676477863559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.19676477863559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.19676477863559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.19676477863559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.19676477863559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16827037914427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.16827037914427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.16827037914427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.16827037914427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.16827037914427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.16827037914427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.16827037914427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.16827037914427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.16827037914427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.16827037914427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.16827037914427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.16827037914427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.16827037914427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16827037914427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.16827037914427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.16827037914427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.16827037914427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15402317939861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.15402317939861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.15402317939861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.15402317939861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.15402317939861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.15402317939861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.15402317939861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.15402317939861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.15402317939861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.15402317939861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.15402317939861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15402317939861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15402317939861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15402317939861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15402317939861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15402317939861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15402317939861 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13977597965295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.13977597965295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.13977597965295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.13977597965295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.13977597965295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.13977597965295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.13977597965295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.13977597965295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.13977597965295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.13977597965295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.13977597965295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.13977597965295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.13977597965295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13977597965295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.13977597965295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.13977597965295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.13977597965295 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.942728817252406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.942728817252406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.942728817252406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.942728817252406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03700169897765 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.03700169897765 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.03700169897765 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.03700169897765 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.03700169897765 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.03700169897765 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.03700169897765 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.03700169897765 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.03700169897765 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.03700169897765 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.03700169897765 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.03700169897765 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.03700169897765 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03700169897765 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.03700169897765 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.03700169897765 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.03700169897765 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.989865258115026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.989865258115026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.989865258115026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.989865258115026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.989865258115026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.989865258115026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.989865258115026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.989865258115026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.989865258115026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.989865258115026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.989865258115026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.989865258115026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.989865258115026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.989865258115026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.989865258115026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.989865258115026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.989865258115026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.966297037683716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.966297037683716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.966297037683716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.966297037683716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.966297037683716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.966297037683716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.966297037683716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.966297037683716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.966297037683716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.966297037683716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.966297037683716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.966297037683716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.966297037683716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.966297037683716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.966297037683716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.966297037683716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.966297037683716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.954512927468061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.954512927468061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.954512927468061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.954512927468061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.954512927468061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.954512927468061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.954512927468061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.954512927468061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.954512927468061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.954512927468061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.954512927468061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.954512927468061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.954512927468061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.954512927468061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.954512927468061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.954512927468061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.954512927468061 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942728817252406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.942728817252406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.942728817252406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.942728817252406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.942728817252406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.942728817252406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.942728817252406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.942728817252406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.942728817252406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.942728817252406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.942728817252406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.942728817252406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.942728817252406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.942728817252406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.942728817252406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.942728817252406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.942728817252406 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243349929209077 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243349929209077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243349929209077 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243349929209077 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.219014936288169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.219014936288169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.219014936288169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.219014936288169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.219014936288169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.219014936288169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.219014936288169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.219014936288169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.219014936288169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.219014936288169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.219014936288169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.219014936288169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.219014936288169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.219014936288169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.219014936288169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.219014936288169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.219014936288169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231182432748623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.231182432748623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.231182432748623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.231182432748623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.231182432748623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.231182432748623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.231182432748623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.231182432748623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.231182432748623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.231182432748623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.231182432748623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.231182432748623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231182432748623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231182432748623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231182432748623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231182432748623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231182432748623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23726618097885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.23726618097885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.23726618097885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.23726618097885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.23726618097885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.23726618097885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.23726618097885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.23726618097885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23726618097885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23726618097885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23726618097885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23726618097885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23726618097885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23726618097885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23726618097885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23726618097885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23726618097885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.240308055093963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.240308055093963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.240308055093963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.240308055093963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.240308055093963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.240308055093963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.240308055093963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.240308055093963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.240308055093963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.240308055093963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.240308055093963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.240308055093963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.240308055093963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.240308055093963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.240308055093963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.240308055093963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.240308055093963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243349929209077 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.243349929209077 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243349929209077 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243349929209077 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243349929209077 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243349929209077 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243349929209077 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243349929209077 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243349929209077 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243349929209077 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243349929209077 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243349929209077 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243349929209077 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243349929209077 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243349929209077 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243349929209077 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243349929209077 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0441485234035819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0441485234035819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0441485234035819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0441485234035819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0397336710632237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0397336710632237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0397336710632237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0397336710632237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0397336710632237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0397336710632237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0397336710632237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0397336710632237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0397336710632237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0397336710632237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0397336710632237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0397336710632237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0397336710632237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0397336710632237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0397336710632237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0397336710632237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0397336710632237 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0419410972334028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0419410972334028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0419410972334028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0419410972334028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0419410972334028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0419410972334028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0419410972334028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0419410972334028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0419410972334028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0419410972334028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0419410972334028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0419410972334028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0419410972334028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0419410972334028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0419410972334028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0419410972334028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0419410972334028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430448103184924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0430448103184924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430448103184924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430448103184924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430448103184924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430448103184924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430448103184924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430448103184924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430448103184924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430448103184924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430448103184924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430448103184924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430448103184924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430448103184924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430448103184924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430448103184924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430448103184924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0435966668610372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0435966668610372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0435966668610372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0435966668610372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0435966668610372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0435966668610372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0435966668610372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0435966668610372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0435966668610372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0435966668610372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0435966668610372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0435966668610372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0435966668610372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0435966668610372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0435966668610372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0435966668610372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0435966668610372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441485234035819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0441485234035819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0441485234035819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0441485234035819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0441485234035819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0441485234035819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0441485234035819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0441485234035819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0441485234035819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0441485234035819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0441485234035819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0441485234035819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0441485234035819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0441485234035819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0441485234035819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0441485234035819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0441485234035819 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0207932281868646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0207932281868646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0207932281868646 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0207932281868646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.022872551005551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.022872551005551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.022872551005551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.022872551005551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.022872551005551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.022872551005551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.022872551005551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.022872551005551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.022872551005551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.022872551005551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.022872551005551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.022872551005551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.022872551005551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.022872551005551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.022872551005551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.022872551005551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.022872551005551 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0218328895962078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0218328895962078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0218328895962078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0218328895962078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0218328895962078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0218328895962078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0218328895962078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0218328895962078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0218328895962078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0218328895962078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0218328895962078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0218328895962078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0218328895962078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0218328895962078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0218328895962078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0218328895962078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0218328895962078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0213130588915362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0213130588915362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0213130588915362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0213130588915362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0213130588915362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0213130588915362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0213130588915362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0213130588915362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0213130588915362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0213130588915362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0213130588915362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0213130588915362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0213130588915362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0213130588915362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0213130588915362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0213130588915362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0213130588915362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210531435392004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0210531435392004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0210531435392004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0210531435392004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0210531435392004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0210531435392004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0210531435392004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0210531435392004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0210531435392004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0210531435392004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0210531435392004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0210531435392004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0210531435392004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0210531435392004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210531435392004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0210531435392004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0210531435392004 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0207932281868646 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0207932281868646 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0207932281868646 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0207932281868646 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0207932281868646 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0207932281868646 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0207932281868646 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0207932281868646 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0207932281868646 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0207932281868646 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0207932281868646 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0207932281868646 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0207932281868646 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0207932281868646 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0207932281868646 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0207932281868646 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0207932281868646 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.154676689327127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.154676689327127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.154676689327127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.154676689327127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.17014435825984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.17014435825984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.17014435825984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.17014435825984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.17014435825984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.17014435825984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.17014435825984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.17014435825984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.17014435825984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.17014435825984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.17014435825984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.17014435825984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.17014435825984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.17014435825984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.17014435825984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.17014435825984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.17014435825984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162410523793483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.162410523793483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.162410523793483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.162410523793483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.162410523793483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.162410523793483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.162410523793483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.162410523793483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.162410523793483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.162410523793483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162410523793483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162410523793483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162410523793483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162410523793483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162410523793483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162410523793483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162410523793483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.158543606560305 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.158543606560305 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.158543606560305 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.158543606560305 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.158543606560305 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.158543606560305 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.158543606560305 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.158543606560305 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.158543606560305 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.158543606560305 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.158543606560305 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.158543606560305 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.158543606560305 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.158543606560305 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.158543606560305 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.158543606560305 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.158543606560305 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.156610147943716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.156610147943716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.156610147943716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.156610147943716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.156610147943716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.156610147943716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.156610147943716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.156610147943716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.156610147943716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.156610147943716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.156610147943716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.156610147943716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.156610147943716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.156610147943716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.156610147943716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.156610147943716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.156610147943716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154676689327127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.154676689327127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.154676689327127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.154676689327127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.154676689327127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.154676689327127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.154676689327127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.154676689327127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.154676689327127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.154676689327127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.154676689327127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.154676689327127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.154676689327127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.154676689327127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154676689327127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.154676689327127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.154676689327127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153946038865549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153946038865549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153946038865549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153946038865549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138551434978994 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.138551434978994 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.138551434978994 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.138551434978994 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.138551434978994 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.138551434978994 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.138551434978994 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.138551434978994 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.138551434978994 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.138551434978994 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.138551434978994 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138551434978994 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138551434978994 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138551434978994 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138551434978994 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138551434978994 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138551434978994 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146248736922272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.146248736922272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.146248736922272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.146248736922272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.146248736922272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.146248736922272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.146248736922272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.146248736922272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146248736922272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146248736922272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146248736922272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146248736922272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146248736922272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146248736922272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146248736922272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146248736922272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146248736922272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150097387893911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.150097387893911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.150097387893911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.150097387893911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.150097387893911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.150097387893911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.150097387893911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.150097387893911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.150097387893911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.150097387893911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.150097387893911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.150097387893911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.150097387893911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.150097387893911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150097387893911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.150097387893911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.150097387893911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15202171337973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.15202171337973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.15202171337973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.15202171337973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.15202171337973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.15202171337973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.15202171337973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.15202171337973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.15202171337973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.15202171337973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.15202171337973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.15202171337973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.15202171337973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.15202171337973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15202171337973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.15202171337973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.15202171337973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153946038865549 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.153946038865549 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.153946038865549 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.153946038865549 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.153946038865549 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.153946038865549 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.153946038865549 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.153946038865549 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.153946038865549 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.153946038865549 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153946038865549 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153946038865549 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153946038865549 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153946038865549 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153946038865549 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153946038865549 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153946038865549 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20218535510975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20218535510975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20218535510975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20218535510975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181966819598775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.181966819598775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.181966819598775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.181966819598775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.181966819598775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.181966819598775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.181966819598775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.181966819598775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.181966819598775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.181966819598775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.181966819598775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.181966819598775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.181966819598775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.181966819598775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181966819598775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.181966819598775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.181966819598775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192076087354263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.192076087354263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.192076087354263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.192076087354263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.192076087354263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.192076087354263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.192076087354263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.192076087354263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.192076087354263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.192076087354263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.192076087354263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.192076087354263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.192076087354263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.192076087354263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192076087354263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.192076087354263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.192076087354263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.197130721232006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.197130721232006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.197130721232006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.197130721232006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.197130721232006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.197130721232006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.197130721232006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.197130721232006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.197130721232006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.197130721232006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.197130721232006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.197130721232006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.197130721232006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.197130721232006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.197130721232006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.197130721232006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.197130721232006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199658038170878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.199658038170878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.199658038170878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.199658038170878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.199658038170878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.199658038170878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.199658038170878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.199658038170878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199658038170878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199658038170878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199658038170878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199658038170878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199658038170878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199658038170878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199658038170878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199658038170878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199658038170878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20218535510975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.20218535510975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.20218535510975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.20218535510975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.20218535510975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.20218535510975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.20218535510975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.20218535510975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.20218535510975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.20218535510975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.20218535510975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20218535510975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20218535510975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20218535510975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20218535510975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20218535510975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20218535510975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0469843088261115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0469843088261115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0469843088261115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0469843088261115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0516827397087226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0516827397087226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0516827397087226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0516827397087226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0516827397087226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0516827397087226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0516827397087226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0516827397087226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0516827397087226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0516827397087226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0516827397087226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0516827397087226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0516827397087226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0516827397087226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0516827397087226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0516827397087226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0516827397087226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0493335242674171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0493335242674171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0493335242674171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0493335242674171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0493335242674171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0493335242674171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0493335242674171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0493335242674171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0493335242674171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0493335242674171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0493335242674171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0493335242674171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0493335242674171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0493335242674171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0493335242674171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0493335242674171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0493335242674171 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0481589165467643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0481589165467643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0481589165467643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0481589165467643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0481589165467643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0481589165467643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0481589165467643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0481589165467643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0481589165467643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0481589165467643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0481589165467643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0481589165467643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0481589165467643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0481589165467643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0481589165467643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0481589165467643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0481589165467643 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0475716126864379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0475716126864379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0475716126864379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0475716126864379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0475716126864379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0475716126864379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0475716126864379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0475716126864379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0475716126864379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0475716126864379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0475716126864379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0475716126864379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0475716126864379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0475716126864379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0475716126864379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0475716126864379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0475716126864379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0469843088261115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0469843088261115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0469843088261115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0469843088261115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0469843088261115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0469843088261115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0469843088261115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0469843088261115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0469843088261115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0469843088261115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0469843088261115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0469843088261115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0469843088261115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0469843088261115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0469843088261115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0469843088261115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0469843088261115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162348608390565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162348608390565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162348608390565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162348608390565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146113747551509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.146113747551509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.146113747551509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.146113747551509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.146113747551509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.146113747551509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.146113747551509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.146113747551509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146113747551509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146113747551509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146113747551509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146113747551509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146113747551509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146113747551509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146113747551509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146113747551509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146113747551509 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.154231177971037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.154231177971037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.154231177971037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.154231177971037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.154231177971037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.154231177971037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.154231177971037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.154231177971037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.154231177971037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.154231177971037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.154231177971037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.154231177971037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.154231177971037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.154231177971037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.154231177971037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.154231177971037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.154231177971037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158289893180801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.158289893180801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.158289893180801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.158289893180801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.158289893180801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.158289893180801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.158289893180801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.158289893180801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.158289893180801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.158289893180801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.158289893180801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158289893180801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158289893180801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158289893180801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158289893180801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158289893180801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158289893180801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.160319250785683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.160319250785683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.160319250785683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.160319250785683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.160319250785683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.160319250785683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.160319250785683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.160319250785683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.160319250785683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.160319250785683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.160319250785683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.160319250785683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.160319250785683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.160319250785683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.160319250785683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.160319250785683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.160319250785683 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162348608390565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.162348608390565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.162348608390565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.162348608390565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.162348608390565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.162348608390565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.162348608390565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.162348608390565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.162348608390565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.162348608390565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.162348608390565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.162348608390565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.162348608390565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.162348608390565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.162348608390565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.162348608390565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.162348608390565 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.266034161192156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.266034161192156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.266034161192156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.266034161192156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.239430745072941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.239430745072941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.239430745072941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.239430745072941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.239430745072941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.239430745072941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.239430745072941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.239430745072941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.239430745072941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.239430745072941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.239430745072941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.239430745072941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.239430745072941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.239430745072941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.239430745072941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.239430745072941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.239430745072941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252732453132548 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.252732453132548 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.252732453132548 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.252732453132548 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.252732453132548 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.252732453132548 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.252732453132548 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.252732453132548 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.252732453132548 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.252732453132548 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.252732453132548 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252732453132548 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252732453132548 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252732453132548 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252732453132548 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252732453132548 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252732453132548 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.259383307162352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.259383307162352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.259383307162352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.259383307162352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.259383307162352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.259383307162352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.259383307162352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.259383307162352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.259383307162352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.259383307162352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.259383307162352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.259383307162352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.259383307162352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.259383307162352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.259383307162352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.259383307162352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.259383307162352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.262708734177254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.262708734177254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.262708734177254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.262708734177254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.262708734177254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.262708734177254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.262708734177254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.262708734177254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.262708734177254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.262708734177254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.262708734177254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.262708734177254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.262708734177254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.262708734177254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.262708734177254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.262708734177254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.262708734177254 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266034161192156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.266034161192156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.266034161192156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.266034161192156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.266034161192156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.266034161192156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.266034161192156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.266034161192156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.266034161192156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.266034161192156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.266034161192156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.266034161192156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.266034161192156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.266034161192156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266034161192156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.266034161192156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.266034161192156 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.109109210799995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.109109210799995 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.109109210799995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.109109210799995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0981982897199958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0981982897199958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0981982897199958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0981982897199958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0981982897199958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0981982897199958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0981982897199958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0981982897199958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0981982897199958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0981982897199958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0981982897199958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0981982897199958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0981982897199958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0981982897199958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0981982897199958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0981982897199958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0981982897199958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103653750259996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.103653750259996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.103653750259996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.103653750259996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.103653750259996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.103653750259996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.103653750259996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.103653750259996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.103653750259996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.103653750259996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.103653750259996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.103653750259996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.103653750259996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.103653750259996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103653750259996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.103653750259996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.103653750259996 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106381480529995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.106381480529995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.106381480529995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.106381480529995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.106381480529995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.106381480529995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.106381480529995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.106381480529995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.106381480529995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.106381480529995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.106381480529995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.106381480529995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.106381480529995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.106381480529995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106381480529995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.106381480529995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.106381480529995 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107745345664995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107745345664995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107745345664995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107745345664995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107745345664995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107745345664995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107745345664995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107745345664995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107745345664995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107745345664995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107745345664995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107745345664995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107745345664995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107745345664995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107745345664995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107745345664995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107745345664995 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109109210799995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.109109210799995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.109109210799995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.109109210799995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.109109210799995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.109109210799995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.109109210799995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.109109210799995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.109109210799995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.109109210799995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.109109210799995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.109109210799995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.109109210799995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.109109210799995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109109210799995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.109109210799995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.109109210799995 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.125199517113107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.125199517113107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.125199517113107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.125199517113107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112679565401797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.112679565401797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.112679565401797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.112679565401797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.112679565401797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.112679565401797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.112679565401797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.112679565401797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.112679565401797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.112679565401797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112679565401797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112679565401797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112679565401797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112679565401797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112679565401797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112679565401797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112679565401797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.118939541257452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.118939541257452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.118939541257452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.118939541257452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.118939541257452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.118939541257452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.118939541257452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.118939541257452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.118939541257452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.118939541257452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.118939541257452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.118939541257452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.118939541257452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.118939541257452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.118939541257452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.118939541257452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.118939541257452 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12206952918528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.12206952918528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12206952918528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12206952918528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12206952918528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12206952918528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12206952918528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12206952918528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12206952918528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12206952918528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12206952918528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12206952918528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12206952918528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12206952918528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12206952918528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12206952918528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12206952918528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.123634523149194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.123634523149194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.123634523149194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.123634523149194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.123634523149194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.123634523149194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.123634523149194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.123634523149194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.123634523149194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.123634523149194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.123634523149194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.123634523149194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.123634523149194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.123634523149194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.123634523149194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.123634523149194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.123634523149194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125199517113107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.125199517113107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.125199517113107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.125199517113107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.125199517113107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.125199517113107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.125199517113107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.125199517113107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.125199517113107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.125199517113107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.125199517113107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.125199517113107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.125199517113107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.125199517113107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125199517113107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.125199517113107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.125199517113107 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0492073531590922 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0492073531590922 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0492073531590922 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0492073531590922 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0541280884750014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0541280884750014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0541280884750014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0541280884750014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0541280884750014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0541280884750014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0541280884750014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0541280884750014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0541280884750014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0541280884750014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0541280884750014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0541280884750014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0541280884750014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0541280884750014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0541280884750014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0541280884750014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0541280884750014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0516677208170468 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0516677208170468 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0516677208170468 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0516677208170468 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0516677208170468 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0516677208170468 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0516677208170468 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0516677208170468 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0516677208170468 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0516677208170468 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0516677208170468 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0516677208170468 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0516677208170468 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0516677208170468 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0516677208170468 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0516677208170468 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0516677208170468 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0504375369880695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0504375369880695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0504375369880695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0504375369880695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0504375369880695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0504375369880695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0504375369880695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0504375369880695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0504375369880695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0504375369880695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0504375369880695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0504375369880695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0504375369880695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0504375369880695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0504375369880695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0504375369880695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0504375369880695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0498224450735808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0498224450735808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0498224450735808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0498224450735808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0498224450735808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0498224450735808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0498224450735808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0498224450735808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0498224450735808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0498224450735808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0498224450735808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0498224450735808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0498224450735808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0498224450735808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0498224450735808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0498224450735808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0498224450735808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492073531590922 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0492073531590922 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0492073531590922 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0492073531590922 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0492073531590922 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0492073531590922 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0492073531590922 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0492073531590922 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0492073531590922 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0492073531590922 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0492073531590922 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0492073531590922 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0492073531590922 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0492073531590922 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0492073531590922 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0492073531590922 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0492073531590922 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358617799373635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358617799373635 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358617799373635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358617799373635 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.322756019436272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.322756019436272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.322756019436272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.322756019436272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.322756019436272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.322756019436272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.322756019436272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.322756019436272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.322756019436272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.322756019436272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.322756019436272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.322756019436272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.322756019436272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.322756019436272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.322756019436272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.322756019436272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.322756019436272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340686909404954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.340686909404954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.340686909404954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.340686909404954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.340686909404954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.340686909404954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.340686909404954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.340686909404954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.340686909404954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.340686909404954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.340686909404954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.340686909404954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.340686909404954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.340686909404954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340686909404954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.340686909404954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.340686909404954 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349652354389295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.349652354389295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.349652354389295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.349652354389295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.349652354389295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.349652354389295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.349652354389295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.349652354389295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.349652354389295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.349652354389295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.349652354389295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.349652354389295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.349652354389295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.349652354389295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.349652354389295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.349652354389295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.349652354389295 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.354135076881465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.354135076881465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.354135076881465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.354135076881465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.354135076881465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.354135076881465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.354135076881465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.354135076881465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.354135076881465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.354135076881465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.354135076881465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.354135076881465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.354135076881465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.354135076881465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.354135076881465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.354135076881465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.354135076881465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358617799373635 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.358617799373635 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.358617799373635 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.358617799373635 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.358617799373635 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.358617799373635 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.358617799373635 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.358617799373635 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.358617799373635 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.358617799373635 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.358617799373635 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.358617799373635 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358617799373635 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358617799373635 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358617799373635 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358617799373635 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358617799373635 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0320632742343233 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0320632742343233 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0320632742343233 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0320632742343233 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.028856946810891 -8.92433595289391e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304601105226072 -3.86457683916579e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0312616923784653 -1.33469728230173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0316624833063943 -6.97575038697049e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0320632742343233 -8.80493724366513e-05"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243210247545498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243210247545498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243210247545498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243210247545498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.218889222790948 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.218889222790948 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.218889222790948 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.218889222790948 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.218889222790948 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.218889222790948 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.218889222790948 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.218889222790948 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.218889222790948 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.218889222790948 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.218889222790948 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.218889222790948 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.218889222790948 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.218889222790948 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.218889222790948 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.218889222790948 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.218889222790948 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231049735168223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.231049735168223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.231049735168223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.231049735168223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.231049735168223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.231049735168223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.231049735168223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.231049735168223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.231049735168223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.231049735168223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.231049735168223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.231049735168223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231049735168223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231049735168223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231049735168223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231049735168223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231049735168223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23712999135686 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.23712999135686 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.23712999135686 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.23712999135686 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.23712999135686 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.23712999135686 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.23712999135686 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.23712999135686 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23712999135686 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23712999135686 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23712999135686 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23712999135686 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23712999135686 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23712999135686 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23712999135686 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23712999135686 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23712999135686 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.240170119451179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.240170119451179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.240170119451179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.240170119451179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.240170119451179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.240170119451179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.240170119451179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.240170119451179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.240170119451179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.240170119451179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.240170119451179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.240170119451179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.240170119451179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.240170119451179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.240170119451179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.240170119451179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.240170119451179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243210247545498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.243210247545498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.243210247545498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.243210247545498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.243210247545498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.243210247545498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.243210247545498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243210247545498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243210247545498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243210247545498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243210247545498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243210247545498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243210247545498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243210247545498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243210247545498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243210247545498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243210247545498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.203098335520545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.203098335520545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.203098335520545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.203098335520545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.223408169072599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.223408169072599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.223408169072599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.223408169072599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.223408169072599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.223408169072599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.223408169072599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.223408169072599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.223408169072599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.223408169072599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.223408169072599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.223408169072599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.223408169072599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.223408169072599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.223408169072599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.223408169072599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.223408169072599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213253252296572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.213253252296572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.213253252296572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.213253252296572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.213253252296572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.213253252296572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.213253252296572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.213253252296572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.213253252296572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.213253252296572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.213253252296572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.213253252296572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.213253252296572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.213253252296572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213253252296572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.213253252296572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.213253252296572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.208175793908558 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.208175793908558 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.208175793908558 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.208175793908558 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.208175793908558 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.208175793908558 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.208175793908558 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.208175793908558 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.208175793908558 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.208175793908558 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.208175793908558 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.208175793908558 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.208175793908558 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.208175793908558 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.208175793908558 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.208175793908558 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.208175793908558 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205637064714551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.205637064714551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.205637064714551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.205637064714551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.205637064714551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.205637064714551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.205637064714551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.205637064714551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.205637064714551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.205637064714551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.205637064714551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.205637064714551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.205637064714551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.205637064714551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205637064714551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.205637064714551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.205637064714551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203098335520545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.203098335520545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.203098335520545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.203098335520545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.203098335520545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.203098335520545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.203098335520545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.203098335520545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.203098335520545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.203098335520545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.203098335520545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.203098335520545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.203098335520545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.203098335520545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203098335520545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.203098335520545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.203098335520545 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.136529084287854 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.136529084287854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.136529084287854 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.136529084287854 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122876175859069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122876175859069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.122876175859069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.122876175859069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.122876175859069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.122876175859069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.122876175859069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122876175859069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122876175859069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122876175859069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122876175859069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122876175859069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122876175859069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122876175859069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122876175859069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122876175859069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122876175859069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122876175859069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.129702630073462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.129702630073462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.129702630073462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.129702630073462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.129702630073462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.129702630073462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.129702630073462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.129702630073462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.129702630073462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.129702630073462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.129702630073462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.129702630073462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.129702630073462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.129702630073462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.129702630073462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.129702630073462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.129702630073462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.129702630073462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133115857180658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133115857180658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.133115857180658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.133115857180658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.133115857180658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.133115857180658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.133115857180658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.133115857180658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.133115857180658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.133115857180658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.133115857180658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.133115857180658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.133115857180658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.133115857180658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.133115857180658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133115857180658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133115857180658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.133115857180658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.134822470734256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.134822470734256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.134822470734256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.134822470734256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.134822470734256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.134822470734256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.134822470734256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.134822470734256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.134822470734256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.134822470734256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.134822470734256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.134822470734256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.134822470734256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.134822470734256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.134822470734256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.134822470734256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.134822470734256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.134822470734256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.136529084287854 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.136529084287854 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.136529084287854 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.136529084287854 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.136529084287854 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.136529084287854 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.136529084287854 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.136529084287854 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.136529084287854 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.136529084287854 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.136529084287854 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.136529084287854 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.136529084287854 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.136529084287854 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.136529084287854 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.136529084287854 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.66367896295744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.66367896295744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.66367896295744 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.66367896295744 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.597311066661696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.597311066661696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.597311066661696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.597311066661696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.597311066661696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.597311066661696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.597311066661696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.597311066661696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.597311066661696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.597311066661696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.597311066661696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.597311066661696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.597311066661696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.597311066661696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.597311066661696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.597311066661696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.597311066661696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.630495014809568 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.630495014809568 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.630495014809568 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.630495014809568 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.630495014809568 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.630495014809568 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.630495014809568 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.630495014809568 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.630495014809568 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.630495014809568 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.630495014809568 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.630495014809568 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.630495014809568 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.630495014809568 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.630495014809568 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.630495014809568 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.630495014809568 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.647086988883504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.647086988883504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.647086988883504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.647086988883504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.647086988883504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.647086988883504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.647086988883504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.647086988883504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.647086988883504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.647086988883504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.647086988883504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.647086988883504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.647086988883504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.647086988883504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.647086988883504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.647086988883504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.647086988883504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.655382975920472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.655382975920472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.655382975920472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.655382975920472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.655382975920472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.655382975920472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.655382975920472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.655382975920472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.655382975920472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.655382975920472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.655382975920472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.655382975920472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.655382975920472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.655382975920472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.655382975920472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.655382975920472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.655382975920472 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66367896295744 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.66367896295744 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.66367896295744 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.66367896295744 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.66367896295744 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.66367896295744 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.66367896295744 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.66367896295744 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.66367896295744 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.66367896295744 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.66367896295744 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.66367896295744 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.66367896295744 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.66367896295744 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.66367896295744 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66367896295744 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.66367896295744 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0804483621339243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0804483621339243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0804483621339243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0804483621339243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0884931983473167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0884931983473167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0884931983473167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0884931983473167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0884931983473167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0884931983473167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0884931983473167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0884931983473167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0884931983473167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0884931983473167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0884931983473167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0884931983473167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0884931983473167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0884931983473167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0884931983473167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0884931983473167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0884931983473167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0844707802406205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0844707802406205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0844707802406205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0844707802406205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0844707802406205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0844707802406205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0844707802406205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0844707802406205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0844707802406205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0844707802406205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0844707802406205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0844707802406205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0844707802406205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0844707802406205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0844707802406205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0844707802406205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0844707802406205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0824595711872724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0824595711872724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0824595711872724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0824595711872724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0824595711872724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0824595711872724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0824595711872724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0824595711872724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0824595711872724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0824595711872724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0824595711872724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0824595711872724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0824595711872724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0824595711872724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0824595711872724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0824595711872724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0824595711872724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0814539666605983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0814539666605983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0814539666605983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0814539666605983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0814539666605983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0814539666605983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0814539666605983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0814539666605983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0814539666605983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0814539666605983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0814539666605983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0814539666605983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0814539666605983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0814539666605983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0814539666605983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0814539666605983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0814539666605983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0804483621339243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.0804483621339243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0804483621339243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0804483621339243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0804483621339243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0804483621339243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0804483621339243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0804483621339243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0804483621339243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0804483621339243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0804483621339243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0804483621339243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0804483621339243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0804483621339243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0804483621339243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0804483621339243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0804483621339243 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.370240885533146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.370240885533146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.370240885533146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.370240885533146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333216796979832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333216796979832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.333216796979832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.333216796979832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.333216796979832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.333216796979832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.333216796979832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.333216796979832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.333216796979832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.333216796979832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.333216796979832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.333216796979832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.333216796979832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333216796979832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333216796979832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333216796979832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333216796979832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333216796979832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351728841256489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351728841256489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.351728841256489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351728841256489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351728841256489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351728841256489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351728841256489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351728841256489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351728841256489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351728841256489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351728841256489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351728841256489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351728841256489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351728841256489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351728841256489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351728841256489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351728841256489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351728841256489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.360984863394818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.360984863394818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.360984863394818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.360984863394818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.360984863394818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.360984863394818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.360984863394818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.360984863394818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.360984863394818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.360984863394818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.360984863394818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.360984863394818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.360984863394818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.360984863394818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.360984863394818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.360984863394818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.360984863394818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.360984863394818 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365612874463982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365612874463982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.365612874463982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.365612874463982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365612874463982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365612874463982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365612874463982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365612874463982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365612874463982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365612874463982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365612874463982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365612874463982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365612874463982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365612874463982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365612874463982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365612874463982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365612874463982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365612874463982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.370240885533146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.370240885533146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.370240885533146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.370240885533146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.370240885533146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.370240885533146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.370240885533146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.370240885533146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.370240885533146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.370240885533146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.370240885533146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.370240885533146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.370240885533146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.370240885533146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.370240885533146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.370240885533146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.110016436966855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.110016436966855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.110016436966855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.110016436966855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.12101808066354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.12101808066354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.12101808066354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.12101808066354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.12101808066354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.12101808066354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.12101808066354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.12101808066354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.12101808066354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.12101808066354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.12101808066354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.12101808066354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.12101808066354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.12101808066354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.12101808066354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.12101808066354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.12101808066354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.12101808066354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115517258815198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115517258815198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.115517258815198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.115517258815198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.115517258815198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.115517258815198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.115517258815198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.115517258815198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.115517258815198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.115517258815198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.115517258815198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.115517258815198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115517258815198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115517258815198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115517258815198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115517258815198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115517258815198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115517258815198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112766847891026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112766847891026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.112766847891026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.112766847891026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.112766847891026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.112766847891026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.112766847891026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.112766847891026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.112766847891026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.112766847891026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.112766847891026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.112766847891026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.112766847891026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.112766847891026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.112766847891026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.112766847891026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.112766847891026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.112766847891026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11139164242894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11139164242894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.11139164242894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.11139164242894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.11139164242894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.11139164242894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.11139164242894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.11139164242894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.11139164242894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.11139164242894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11139164242894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11139164242894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11139164242894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11139164242894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11139164242894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11139164242894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11139164242894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11139164242894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.110016436966855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.110016436966855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.110016436966855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.110016436966855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.110016436966855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.110016436966855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.110016436966855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.110016436966855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.110016436966855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.110016436966855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.110016436966855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.110016436966855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.110016436966855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.110016436966855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.110016436966855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.110016436966855 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.43452029838274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.43452029838274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.43452029838274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.43452029838274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.29106826854446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.3627942834636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.39865729092317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.41658879465295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.43452029838274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.43452029838274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.43452029838274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.43452029838274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.43452029838274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.43452029838274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.43452029838274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.43452029838274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.43452029838274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.43452029838274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.43452029838274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.43452029838274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.43452029838274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.43452029838274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.43452029838274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43452029838274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.43452029838274 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.472734475923943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.472734475923943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.472734475923943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.472734475923943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425461028331549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.425461028331549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.425461028331549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425461028331549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.425461028331549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.425461028331549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.425461028331549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.425461028331549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.425461028331549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.425461028331549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.425461028331549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.425461028331549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.425461028331549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.425461028331549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.425461028331549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.425461028331549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.425461028331549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.449097752127746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.449097752127746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.449097752127746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.449097752127746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.449097752127746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.449097752127746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.449097752127746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.449097752127746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.449097752127746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.449097752127746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.449097752127746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.449097752127746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.449097752127746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.449097752127746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.449097752127746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.449097752127746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.449097752127746 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460916114025844 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.460916114025844 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.460916114025844 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.460916114025844 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.460916114025844 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.460916114025844 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.460916114025844 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.460916114025844 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.460916114025844 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.460916114025844 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.460916114025844 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.460916114025844 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.460916114025844 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.460916114025844 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.460916114025844 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.460916114025844 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.460916114025844 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.466825294974894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.466825294974894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.466825294974894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.466825294974894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.466825294974894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.466825294974894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.466825294974894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.466825294974894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.466825294974894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.466825294974894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.466825294974894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.466825294974894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.466825294974894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.466825294974894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.466825294974894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.466825294974894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.466825294974894 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472734475923943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.472734475923943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.472734475923943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.472734475923943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.472734475923943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.472734475923943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.472734475923943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.472734475923943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.472734475923943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.472734475923943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.472734475923943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.472734475923943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.472734475923943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.472734475923943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.472734475923943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.472734475923943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.472734475923943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.345400469824638 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.345400469824638 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.345400469824638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.345400469824638 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379940516807102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.379940516807102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.379940516807102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.379940516807102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.379940516807102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.379940516807102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.379940516807102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.379940516807102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.379940516807102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.379940516807102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.379940516807102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.379940516807102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.379940516807102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.379940516807102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.379940516807102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.379940516807102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.379940516807102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36267049331587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36267049331587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36267049331587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36267049331587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36267049331587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36267049331587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36267049331587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36267049331587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36267049331587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36267049331587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.36267049331587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.36267049331587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36267049331587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.36267049331587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.36267049331587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.36267049331587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.36267049331587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354035481570254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.354035481570254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.354035481570254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354035481570254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.354035481570254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.354035481570254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.354035481570254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.354035481570254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.354035481570254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.354035481570254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.354035481570254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.354035481570254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.354035481570254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.354035481570254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.354035481570254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.354035481570254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.354035481570254 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349717975697446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.349717975697446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.349717975697446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349717975697446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.349717975697446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.349717975697446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.349717975697446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.349717975697446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.349717975697446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.349717975697446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.349717975697446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.349717975697446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.349717975697446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.349717975697446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.349717975697446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.349717975697446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.349717975697446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345400469824638 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345400469824638 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345400469824638 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345400469824638 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345400469824638 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345400469824638 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345400469824638 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345400469824638 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345400469824638 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345400469824638 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345400469824638 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.345400469824638 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.345400469824638 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.345400469824638 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.345400469824638 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.345400469824638 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.345400469824638 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.054088958371259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.054088958371259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.054088958371259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.054088958371259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0486800625341331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0486800625341331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0486800625341331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0486800625341331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0486800625341331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0486800625341331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0486800625341331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0486800625341331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0486800625341331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0486800625341331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0486800625341331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0486800625341331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0486800625341331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0486800625341331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0486800625341331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0486800625341331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0486800625341331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0513845104526961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0513845104526961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0513845104526961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0513845104526961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0513845104526961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0513845104526961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0513845104526961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0513845104526961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0513845104526961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0513845104526961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0513845104526961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0513845104526961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0513845104526961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0513845104526961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0513845104526961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0513845104526961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0513845104526961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0527367344119776 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0527367344119776 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0527367344119776 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0527367344119776 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0527367344119776 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0527367344119776 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0527367344119776 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0527367344119776 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0527367344119776 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0527367344119776 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0527367344119776 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0527367344119776 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0527367344119776 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0527367344119776 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0527367344119776 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0527367344119776 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0527367344119776 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0534128463916183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0534128463916183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0534128463916183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0534128463916183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0534128463916183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0534128463916183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0534128463916183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0534128463916183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0534128463916183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0534128463916183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0534128463916183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0534128463916183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0534128463916183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0534128463916183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0534128463916183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0534128463916183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0534128463916183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054088958371259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.054088958371259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.054088958371259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054088958371259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.054088958371259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.054088958371259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.054088958371259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.054088958371259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.054088958371259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.054088958371259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.054088958371259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.054088958371259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.054088958371259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.054088958371259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.054088958371259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.054088958371259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.054088958371259 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.31702723176498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.31702723176498 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.31702723176498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.31702723176498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44872995494148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44872995494148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44872995494148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44872995494148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44872995494148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44872995494148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44872995494148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44872995494148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44872995494148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44872995494148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44872995494148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44872995494148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44872995494148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44872995494148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44872995494148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44872995494148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.44872995494148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38287859335323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38287859335323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38287859335323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38287859335323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38287859335323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38287859335323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38287859335323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38287859335323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38287859335323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38287859335323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38287859335323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38287859335323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38287859335323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38287859335323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38287859335323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38287859335323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.38287859335323 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34995291255911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34995291255911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34995291255911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34995291255911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34995291255911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34995291255911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34995291255911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.34995291255911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.34995291255911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.34995291255911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.34995291255911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.34995291255911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.34995291255911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.34995291255911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.34995291255911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.34995291255911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.34995291255911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33349007216205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33349007216205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33349007216205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33349007216205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33349007216205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33349007216205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33349007216205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33349007216205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33349007216205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33349007216205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33349007216205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33349007216205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.33349007216205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.33349007216205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.33349007216205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.33349007216205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.33349007216205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31702723176498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31702723176498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31702723176498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31702723176498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31702723176498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31702723176498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31702723176498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31702723176498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31702723176498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.31702723176498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.31702723176498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.31702723176498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.31702723176498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.31702723176498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.31702723176498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.31702723176498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.31702723176498 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.947996884857354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.947996884857354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.947996884857354 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.947996884857354 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04279657334309 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04279657334309 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04279657334309 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04279657334309 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04279657334309 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04279657334309 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04279657334309 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.04279657334309 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.04279657334309 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.04279657334309 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.04279657334309 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.04279657334309 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.04279657334309 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.04279657334309 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.04279657334309 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.04279657334309 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.04279657334309 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.995396729100222 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.995396729100222 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.995396729100222 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.995396729100222 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.995396729100222 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.995396729100222 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.995396729100222 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.995396729100222 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.995396729100222 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.995396729100222 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.995396729100222 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.995396729100222 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.995396729100222 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.995396729100222 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.995396729100222 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.995396729100222 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.995396729100222 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.971696806978788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.971696806978788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.971696806978788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.971696806978788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.971696806978788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.971696806978788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.971696806978788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.971696806978788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.971696806978788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.971696806978788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.971696806978788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.971696806978788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.971696806978788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.971696806978788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.971696806978788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.971696806978788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.971696806978788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959846845918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959846845918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959846845918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959846845918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959846845918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959846845918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959846845918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959846845918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959846845918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959846845918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959846845918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959846845918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959846845918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959846845918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959846845918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959846845918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.959846845918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947996884857354 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947996884857354 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947996884857354 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947996884857354 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947996884857354 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947996884857354 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947996884857354 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947996884857354 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947996884857354 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947996884857354 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947996884857354 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947996884857354 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947996884857354 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947996884857354 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947996884857354 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.947996884857354 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.947996884857354 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.8122742184794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.8122742184794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.8122742184794 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.8122742184794 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.89350164032734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.89350164032734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.89350164032734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.89350164032734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.89350164032734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.89350164032734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.89350164032734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.89350164032734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.89350164032734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.89350164032734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.89350164032734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.89350164032734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.89350164032734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.89350164032734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.89350164032734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.89350164032734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.89350164032734 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.85288792940337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.85288792940337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.85288792940337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.85288792940337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.85288792940337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.85288792940337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.85288792940337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.85288792940337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.85288792940337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.85288792940337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.85288792940337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.85288792940337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.85288792940337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.85288792940337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.85288792940337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.85288792940337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.85288792940337 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.832581073941385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.832581073941385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.832581073941385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.832581073941385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.832581073941385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.832581073941385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.832581073941385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.832581073941385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.832581073941385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.832581073941385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.832581073941385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.832581073941385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.832581073941385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.832581073941385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.832581073941385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.832581073941385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.832581073941385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.822427646210393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.822427646210393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.822427646210393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.822427646210393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.822427646210393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.822427646210393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.822427646210393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.822427646210393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.822427646210393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.822427646210393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.822427646210393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.822427646210393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.822427646210393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.822427646210393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.822427646210393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.822427646210393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.822427646210393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.8122742184794 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.8122742184794 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.8122742184794 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.8122742184794 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.8122742184794 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.8122742184794 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.8122742184794 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.8122742184794 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.8122742184794 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.8122742184794 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.8122742184794 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.8122742184794 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.8122742184794 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.8122742184794 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.8122742184794 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.8122742184794 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.8122742184794 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.42137640813701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.42137640813701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.42137640813701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.42137640813701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.56351404895071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.56351404895071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.56351404895071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.56351404895071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.56351404895071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.56351404895071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.56351404895071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.56351404895071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.56351404895071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.56351404895071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.56351404895071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.56351404895071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.56351404895071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.56351404895071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.56351404895071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.56351404895071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.56351404895071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49244522854386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.49244522854386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49244522854386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.49244522854386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49244522854386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.49244522854386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.49244522854386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.49244522854386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.49244522854386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49244522854386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.49244522854386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.49244522854386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.49244522854386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.49244522854386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.49244522854386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.49244522854386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.49244522854386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45691081834043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.45691081834043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45691081834043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.45691081834043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.45691081834043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.45691081834043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.45691081834043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.45691081834043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.45691081834043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.45691081834043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.45691081834043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.45691081834043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.45691081834043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.45691081834043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.45691081834043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.45691081834043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.45691081834043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.43914361323872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.43914361323872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.43914361323872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.43914361323872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.43914361323872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.43914361323872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.43914361323872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.43914361323872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.43914361323872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.43914361323872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.43914361323872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.43914361323872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.43914361323872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.43914361323872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.43914361323872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.43914361323872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.43914361323872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42137640813701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42137640813701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42137640813701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42137640813701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42137640813701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42137640813701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42137640813701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42137640813701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42137640813701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42137640813701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42137640813701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42137640813701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42137640813701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42137640813701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42137640813701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42137640813701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.42137640813701 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.19477066843048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.19477066843048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.19477066843048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.19477066843048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.175293601587432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.175293601587432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.175293601587432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.175293601587432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.175293601587432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.175293601587432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.175293601587432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.175293601587432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.175293601587432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.175293601587432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.175293601587432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.175293601587432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.175293601587432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.175293601587432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.175293601587432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.175293601587432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.175293601587432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.185032135008956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.185032135008956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.185032135008956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.185032135008956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.185032135008956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.185032135008956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.185032135008956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.185032135008956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.185032135008956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.185032135008956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.185032135008956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.185032135008956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.185032135008956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.185032135008956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.185032135008956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.185032135008956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.185032135008956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.189901401719718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.189901401719718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.189901401719718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.189901401719718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.189901401719718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.189901401719718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.189901401719718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.189901401719718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.189901401719718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.189901401719718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.189901401719718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.189901401719718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.189901401719718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.189901401719718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.189901401719718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.189901401719718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.189901401719718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192336035075099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.192336035075099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.192336035075099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.192336035075099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.192336035075099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.192336035075099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.192336035075099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.192336035075099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.192336035075099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.192336035075099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.192336035075099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.192336035075099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.192336035075099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.192336035075099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.192336035075099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.192336035075099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.192336035075099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19477066843048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.19477066843048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.19477066843048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.19477066843048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19477066843048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.19477066843048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.19477066843048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.19477066843048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.19477066843048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.19477066843048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.19477066843048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.19477066843048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.19477066843048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.19477066843048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.19477066843048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.19477066843048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.19477066843048 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0626694193596511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0626694193596511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0626694193596511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0626694193596511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0689363612956162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0689363612956162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0689363612956162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0689363612956162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0689363612956162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0689363612956162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0689363612956162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0689363612956162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0689363612956162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0689363612956162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0689363612956162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0689363612956162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0689363612956162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0689363612956162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0689363612956162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0689363612956162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0689363612956162 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0658028903276336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0658028903276336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0658028903276336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0658028903276336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0658028903276336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0658028903276336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0658028903276336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0658028903276336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0658028903276336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0658028903276336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0658028903276336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0658028903276336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0658028903276336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0658028903276336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0658028903276336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0658028903276336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0658028903276336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0642361548436423 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0642361548436423 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0642361548436423 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0642361548436423 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0642361548436423 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0642361548436423 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0642361548436423 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0642361548436423 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0642361548436423 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0642361548436423 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0642361548436423 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0642361548436423 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0642361548436423 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0642361548436423 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0642361548436423 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0642361548436423 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0642361548436423 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0634527871016467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0634527871016467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0634527871016467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0634527871016467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0634527871016467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0634527871016467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0634527871016467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0634527871016467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0634527871016467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0634527871016467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0634527871016467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0634527871016467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0634527871016467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0634527871016467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0634527871016467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0634527871016467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0634527871016467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0626694193596511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0626694193596511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0626694193596511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0626694193596511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0626694193596511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0626694193596511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0626694193596511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0626694193596511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0626694193596511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0626694193596511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0626694193596511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0626694193596511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0626694193596511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0626694193596511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0626694193596511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0626694193596511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0626694193596511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.349457711875855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.349457711875855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.349457711875855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.349457711875855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384403483063441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.384403483063441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.384403483063441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.384403483063441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.384403483063441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.384403483063441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.384403483063441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.384403483063441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.384403483063441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.384403483063441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.384403483063441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.384403483063441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.384403483063441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.384403483063441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.384403483063441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.384403483063441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.384403483063441 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.366930597469648 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.366930597469648 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.366930597469648 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.366930597469648 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.366930597469648 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.366930597469648 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.366930597469648 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.366930597469648 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.366930597469648 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.366930597469648 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.366930597469648 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.366930597469648 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.366930597469648 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.366930597469648 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.366930597469648 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.366930597469648 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.366930597469648 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358194154672751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.358194154672751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.358194154672751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.358194154672751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358194154672751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.358194154672751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.358194154672751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.358194154672751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.358194154672751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.358194154672751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.358194154672751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.358194154672751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.358194154672751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.358194154672751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.358194154672751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.358194154672751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.358194154672751 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.353825933274303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.353825933274303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.353825933274303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.353825933274303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.353825933274303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.353825933274303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.353825933274303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.353825933274303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.353825933274303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.353825933274303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.353825933274303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.353825933274303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.353825933274303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.353825933274303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.353825933274303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.353825933274303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.353825933274303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349457711875855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.349457711875855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.349457711875855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.349457711875855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.349457711875855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.349457711875855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.349457711875855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.349457711875855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.349457711875855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.349457711875855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.349457711875855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.349457711875855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.349457711875855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.349457711875855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.349457711875855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.349457711875855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.349457711875855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.116235810711118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.116235810711118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.116235810711118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.116235810711118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.12785939178223 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.12785939178223 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.12785939178223 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.12785939178223 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.12785939178223 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.12785939178223 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.12785939178223 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.12785939178223 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.12785939178223 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.12785939178223 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.12785939178223 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.12785939178223 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.12785939178223 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.12785939178223 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.12785939178223 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.12785939178223 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.12785939178223 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122047601246674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122047601246674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122047601246674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122047601246674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122047601246674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122047601246674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122047601246674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122047601246674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122047601246674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122047601246674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122047601246674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122047601246674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122047601246674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122047601246674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122047601246674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122047601246674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122047601246674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.119141705978896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.119141705978896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.119141705978896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.119141705978896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.119141705978896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.119141705978896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.119141705978896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.119141705978896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.119141705978896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.119141705978896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.119141705978896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.119141705978896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.119141705978896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.119141705978896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.119141705978896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.119141705978896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.119141705978896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.117688758345007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.117688758345007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.117688758345007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.117688758345007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.117688758345007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.117688758345007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.117688758345007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.117688758345007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.117688758345007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.117688758345007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.117688758345007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.117688758345007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.117688758345007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.117688758345007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.117688758345007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.117688758345007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.117688758345007 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116235810711118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116235810711118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116235810711118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116235810711118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116235810711118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116235810711118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116235810711118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116235810711118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116235810711118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.116235810711118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.116235810711118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.116235810711118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.116235810711118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.116235810711118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.116235810711118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.116235810711118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.116235810711118 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.893729066973461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.893729066973461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.893729066973461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.893729066973461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.804356160276115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.804356160276115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.804356160276115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.804356160276115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.804356160276115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.804356160276115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.804356160276115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.804356160276115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.804356160276115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.804356160276115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.804356160276115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.804356160276115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.804356160276115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.804356160276115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.804356160276115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.804356160276115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.804356160276115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849042613624788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.849042613624788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.849042613624788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.849042613624788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.849042613624788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.849042613624788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.849042613624788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.849042613624788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.849042613624788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.849042613624788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.849042613624788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.849042613624788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.849042613624788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.849042613624788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.849042613624788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.849042613624788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.849042613624788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.871385840299124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.871385840299124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.871385840299124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.871385840299124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.871385840299124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.871385840299124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.871385840299124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.871385840299124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.871385840299124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.871385840299124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.871385840299124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.871385840299124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.871385840299124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.871385840299124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.871385840299124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.871385840299124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.871385840299124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.882557453636293 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.882557453636293 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.882557453636293 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.882557453636293 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.882557453636293 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.882557453636293 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.882557453636293 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.882557453636293 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.882557453636293 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.882557453636293 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.882557453636293 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.882557453636293 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.882557453636293 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.882557453636293 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.882557453636293 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.882557453636293 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.882557453636293 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893729066973461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.893729066973461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.893729066973461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.893729066973461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.893729066973461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.893729066973461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.893729066973461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.893729066973461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.893729066973461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.893729066973461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.893729066973461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.893729066973461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.893729066973461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.893729066973461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.893729066973461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.893729066973461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.893729066973461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.1579947345729 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.1579947345729 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.1579947345729 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.1579947345729 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04219526111561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.04219526111561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.04219526111561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.04219526111561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.04219526111561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04219526111561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.04219526111561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.04219526111561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.04219526111561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.04219526111561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.04219526111561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.04219526111561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.04219526111561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.04219526111561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.04219526111561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.04219526111561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.04219526111561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10009499784425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10009499784425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10009499784425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10009499784425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10009499784425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10009499784425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10009499784425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10009499784425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10009499784425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.10009499784425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.10009499784425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.10009499784425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.10009499784425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.10009499784425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.10009499784425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.10009499784425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.10009499784425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.12904486620858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.12904486620858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.12904486620858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.12904486620858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.12904486620858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.12904486620858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.12904486620858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.12904486620858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.12904486620858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.12904486620858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.12904486620858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.12904486620858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.12904486620858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.12904486620858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.12904486620858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.12904486620858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.12904486620858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14351980039074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14351980039074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14351980039074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14351980039074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14351980039074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14351980039074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14351980039074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14351980039074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14351980039074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14351980039074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14351980039074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14351980039074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14351980039074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14351980039074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14351980039074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14351980039074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14351980039074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1579947345729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1579947345729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1579947345729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1579947345729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1579947345729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1579947345729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1579947345729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1579947345729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1579947345729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1579947345729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1579947345729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1579947345729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1579947345729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1579947345729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1579947345729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.1579947345729 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.1579947345729 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.41777222931828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.41777222931828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.41777222931828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.41777222931828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27599500638645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27599500638645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27599500638645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27599500638645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27599500638645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27599500638645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27599500638645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27599500638645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27599500638645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27599500638645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27599500638645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27599500638645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27599500638645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27599500638645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27599500638645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27599500638645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27599500638645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34688361785236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34688361785236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34688361785236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34688361785236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34688361785236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34688361785236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34688361785236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34688361785236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34688361785236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34688361785236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34688361785236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34688361785236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34688361785236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34688361785236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34688361785236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.34688361785236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.34688361785236 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38232792358532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38232792358532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38232792358532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38232792358532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38232792358532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38232792358532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38232792358532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38232792358532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38232792358532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38232792358532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38232792358532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38232792358532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38232792358532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38232792358532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38232792358532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38232792358532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38232792358532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.4000500764518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.4000500764518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.4000500764518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.4000500764518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.4000500764518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.4000500764518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.4000500764518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.4000500764518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.4000500764518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.4000500764518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.4000500764518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.4000500764518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.4000500764518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.4000500764518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.4000500764518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.4000500764518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.4000500764518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41777222931828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.41777222931828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.41777222931828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.41777222931828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.41777222931828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.41777222931828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.41777222931828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.41777222931828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.41777222931828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.41777222931828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.41777222931828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.41777222931828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.41777222931828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.41777222931828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.41777222931828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.41777222931828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.41777222931828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.34210030302943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.34210030302943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.34210030302943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.34210030302943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20789027272648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20789027272648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20789027272648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20789027272648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20789027272648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20789027272648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20789027272648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20789027272648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20789027272648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20789027272648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20789027272648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20789027272648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20789027272648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20789027272648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20789027272648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20789027272648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.20789027272648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27499528787796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27499528787796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27499528787796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27499528787796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27499528787796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27499528787796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27499528787796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27499528787796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27499528787796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27499528787796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27499528787796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27499528787796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27499528787796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27499528787796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27499528787796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27499528787796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27499528787796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30854779545369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.30854779545369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.30854779545369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.30854779545369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.30854779545369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30854779545369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.30854779545369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.30854779545369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.30854779545369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.30854779545369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.30854779545369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.30854779545369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.30854779545369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.30854779545369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.30854779545369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.30854779545369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.30854779545369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32532404924156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.32532404924156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.32532404924156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.32532404924156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.32532404924156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32532404924156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.32532404924156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.32532404924156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.32532404924156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.32532404924156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.32532404924156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.32532404924156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.32532404924156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.32532404924156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.32532404924156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.32532404924156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.32532404924156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34210030302943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34210030302943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34210030302943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34210030302943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34210030302943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34210030302943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34210030302943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34210030302943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34210030302943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34210030302943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34210030302943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34210030302943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34210030302943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34210030302943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34210030302943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.34210030302943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.34210030302943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.784472877824597 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.784472877824597 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.784472877824597 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.784472877824597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.706025590042137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.706025590042137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.706025590042137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.706025590042137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.706025590042137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.706025590042137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.706025590042137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.706025590042137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.706025590042137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.706025590042137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.706025590042137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.706025590042137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.706025590042137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.706025590042137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.706025590042137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.706025590042137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.706025590042137 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.745249233933367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.745249233933367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.745249233933367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.745249233933367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.745249233933367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.745249233933367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.745249233933367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.745249233933367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.745249233933367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.745249233933367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.745249233933367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.745249233933367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.745249233933367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.745249233933367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.745249233933367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.745249233933367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.745249233933367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.764861055878982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.764861055878982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.764861055878982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.764861055878982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.764861055878982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.764861055878982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.764861055878982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.764861055878982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.764861055878982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.764861055878982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.764861055878982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.764861055878982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.764861055878982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.764861055878982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.764861055878982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.764861055878982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.764861055878982 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.77466696685179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.77466696685179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.77466696685179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.77466696685179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.77466696685179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.77466696685179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.77466696685179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.77466696685179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.77466696685179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.77466696685179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.77466696685179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.77466696685179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.77466696685179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.77466696685179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.77466696685179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.77466696685179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.77466696685179 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.784472877824597 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.784472877824597 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.784472877824597 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.784472877824597 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.784472877824597 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.784472877824597 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.784472877824597 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.784472877824597 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.784472877824597 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.784472877824597 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.784472877824597 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.784472877824597 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.784472877824597 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.784472877824597 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.784472877824597 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.784472877824597 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.784472877824597 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.436564689013579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.436564689013579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.436564689013579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.436564689013579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.480221157914936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.480221157914936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.480221157914936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.480221157914936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.480221157914936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.480221157914936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.480221157914936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.480221157914936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.480221157914936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.480221157914936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.480221157914936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.480221157914936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.480221157914936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.480221157914936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.480221157914936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.480221157914936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.480221157914936 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458392923464257 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458392923464257 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458392923464257 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458392923464257 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458392923464257 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458392923464257 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458392923464257 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458392923464257 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458392923464257 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458392923464257 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458392923464257 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458392923464257 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458392923464257 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458392923464257 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458392923464257 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458392923464257 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458392923464257 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447478806238918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.447478806238918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.447478806238918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.447478806238918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447478806238918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.447478806238918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.447478806238918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.447478806238918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.447478806238918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.447478806238918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.447478806238918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.447478806238918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.447478806238918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.447478806238918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.447478806238918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.447478806238918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.447478806238918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442021747626248 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442021747626248 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442021747626248 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442021747626248 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442021747626248 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442021747626248 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442021747626248 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442021747626248 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442021747626248 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442021747626248 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442021747626248 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442021747626248 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442021747626248 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442021747626248 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442021747626248 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442021747626248 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442021747626248 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436564689013579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.436564689013579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.436564689013579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.436564689013579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436564689013579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.436564689013579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.436564689013579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.436564689013579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.436564689013579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.436564689013579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.436564689013579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.436564689013579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.436564689013579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.436564689013579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.436564689013579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.436564689013579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.436564689013579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.147907943610983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.147907943610983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.147907943610983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.147907943610983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133117149249885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.133117149249885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.133117149249885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.133117149249885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133117149249885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133117149249885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.133117149249885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133117149249885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.133117149249885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.133117149249885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.133117149249885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.133117149249885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.133117149249885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.133117149249885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.133117149249885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.133117149249885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.133117149249885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.140512546430434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.140512546430434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.140512546430434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.140512546430434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.140512546430434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.140512546430434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.140512546430434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.140512546430434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.140512546430434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.140512546430434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.140512546430434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.140512546430434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.140512546430434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.140512546430434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.140512546430434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.140512546430434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.140512546430434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144210245020708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.144210245020708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.144210245020708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.144210245020708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144210245020708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.144210245020708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.144210245020708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.144210245020708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.144210245020708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.144210245020708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.144210245020708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.144210245020708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.144210245020708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.144210245020708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.144210245020708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.144210245020708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.144210245020708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146059094315846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146059094315846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146059094315846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146059094315846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146059094315846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146059094315846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146059094315846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146059094315846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146059094315846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146059094315846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146059094315846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146059094315846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146059094315846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146059094315846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.146059094315846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.146059094315846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.146059094315846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147907943610983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.147907943610983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.147907943610983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.147907943610983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147907943610983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.147907943610983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.147907943610983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.147907943610983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.147907943610983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.147907943610983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.147907943610983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.147907943610983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.147907943610983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.147907943610983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.147907943610983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.147907943610983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.147907943610983 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.73570251256932 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.73570251256932 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.73570251256932 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.73570251256932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.36213226131238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.36213226131238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.36213226131238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36213226131238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36213226131238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.36213226131238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.36213226131238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.36213226131238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.36213226131238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.36213226131238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.36213226131238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.36213226131238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.36213226131238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.36213226131238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.36213226131238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.36213226131238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.36213226131238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54891738694085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54891738694085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54891738694085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54891738694085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54891738694085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54891738694085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54891738694085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54891738694085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54891738694085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54891738694085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54891738694085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.54891738694085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.54891738694085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.54891738694085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.54891738694085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.54891738694085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.54891738694085 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64230994975508 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64230994975508 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64230994975508 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64230994975508 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64230994975508 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64230994975508 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64230994975508 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64230994975508 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64230994975508 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64230994975508 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64230994975508 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.64230994975508 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.64230994975508 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.64230994975508 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.64230994975508 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.64230994975508 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.64230994975508 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6890062311622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6890062311622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6890062311622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6890062311622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6890062311622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6890062311622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6890062311622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6890062311622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6890062311622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6890062311622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6890062311622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6890062311622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6890062311622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6890062311622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6890062311622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6890062311622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.6890062311622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73570251256932 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.73570251256932 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.73570251256932 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.73570251256932 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73570251256932 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73570251256932 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.73570251256932 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.73570251256932 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73570251256932 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.73570251256932 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.73570251256932 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.73570251256932 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.73570251256932 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.73570251256932 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.73570251256932 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.73570251256932 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.73570251256932 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.27310104629986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.2152328169226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.18629870223396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.17183164488965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.15736458754533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.949263469304893 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.906115129791034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.884540960034105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.87375387515564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.862966790277175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.862966790277175 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32267993681944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32267993681944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32267993681944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32267993681944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45494793050138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.45494793050138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.45494793050138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45494793050138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.45494793050138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.45494793050138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.45494793050138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.45494793050138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.45494793050138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.45494793050138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.45494793050138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.45494793050138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.45494793050138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.45494793050138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.45494793050138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.45494793050138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.45494793050138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38881393366041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38881393366041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38881393366041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38881393366041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38881393366041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38881393366041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38881393366041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38881393366041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38881393366041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38881393366041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38881393366041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38881393366041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38881393366041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38881393366041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38881393366041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38881393366041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38881393366041 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35574693523993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.35574693523993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.35574693523993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35574693523993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35574693523993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35574693523993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.35574693523993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.35574693523993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.35574693523993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.35574693523993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.35574693523993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.35574693523993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.35574693523993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.35574693523993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.35574693523993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.35574693523993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.35574693523993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33921343602968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33921343602968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33921343602968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33921343602968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33921343602968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33921343602968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33921343602968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33921343602968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33921343602968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33921343602968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33921343602968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33921343602968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33921343602968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.33921343602968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.33921343602968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.33921343602968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.33921343602968 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32267993681944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32267993681944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32267993681944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32267993681944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32267993681944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32267993681944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32267993681944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32267993681944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32267993681944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32267993681944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32267993681944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32267993681944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32267993681944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32267993681944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32267993681944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32267993681944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32267993681944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.31723350855524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.31723350855524 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.31723350855524 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.31723350855524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44895685941076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44895685941076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44895685941076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44895685941076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44895685941076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44895685941076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44895685941076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44895685941076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44895685941076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44895685941076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44895685941076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44895685941076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44895685941076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44895685941076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44895685941076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44895685941076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44895685941076 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.383095183983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.383095183983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.383095183983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.383095183983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.383095183983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.383095183983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.383095183983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.383095183983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.383095183983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.383095183983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.383095183983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.383095183983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.383095183983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.383095183983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.383095183983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.383095183983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.383095183983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35016434626912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.35016434626912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.35016434626912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35016434626912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35016434626912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35016434626912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.35016434626912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.35016434626912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.35016434626912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.35016434626912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.35016434626912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.35016434626912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.35016434626912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.35016434626912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.35016434626912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.35016434626912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.35016434626912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33369892741218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33369892741218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33369892741218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33369892741218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33369892741218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33369892741218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33369892741218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33369892741218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33369892741218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33369892741218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33369892741218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33369892741218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33369892741218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.33369892741218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.33369892741218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.33369892741218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.33369892741218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31723350855524 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31723350855524 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31723350855524 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31723350855524 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31723350855524 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31723350855524 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31723350855524 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31723350855524 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31723350855524 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31723350855524 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.31723350855524 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.31723350855524 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.31723350855524 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.31723350855524 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.31723350855524 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.31723350855524 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.31723350855524 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.13186396702521 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.13186396702521 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.13186396702521 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.13186396702521 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.81867757032269 -9.03599961857962e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.97527076867395 -3.98244404183404e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.05356736784958 -1.45566625346125e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.09271566743739 -1.92277359274856e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.13186396702521 -8.92899557624195e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.13186396702521 -8.92899557624195e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.48689822748273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.48689822748273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.48689822748273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.48689822748273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33820840473446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.33820840473446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.33820840473446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.33820840473446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.33820840473446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33820840473446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.33820840473446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.33820840473446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.33820840473446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.33820840473446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.33820840473446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.33820840473446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.33820840473446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.33820840473446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.33820840473446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.33820840473446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.33820840473446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.4125533161086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.4125533161086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.4125533161086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.4125533161086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.4125533161086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.4125533161086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.4125533161086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.4125533161086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.4125533161086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.4125533161086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.4125533161086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.4125533161086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.4125533161086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.4125533161086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.4125533161086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.4125533161086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.4125533161086 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44972577179567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44972577179567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44972577179567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44972577179567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44972577179567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44972577179567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44972577179567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44972577179567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44972577179567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44972577179567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44972577179567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44972577179567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44972577179567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44972577179567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44972577179567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44972577179567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.44972577179567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.4683119996392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.4683119996392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.4683119996392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.4683119996392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.4683119996392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.4683119996392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.4683119996392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.4683119996392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.4683119996392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.4683119996392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.4683119996392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.4683119996392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.4683119996392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.4683119996392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.4683119996392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.4683119996392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.4683119996392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48689822748273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.48689822748273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.48689822748273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48689822748273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.48689822748273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48689822748273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48689822748273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.48689822748273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.48689822748273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48689822748273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.48689822748273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.48689822748273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.48689822748273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.48689822748273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.48689822748273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.48689822748273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.48689822748273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.785744124082767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.785744124082767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.785744124082767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.785744124082767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.70716971167449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.70716971167449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.70716971167449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.70716971167449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.70716971167449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.70716971167449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.70716971167449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.70716971167449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.70716971167449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.70716971167449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.70716971167449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.70716971167449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.70716971167449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.70716971167449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.70716971167449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.70716971167449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.70716971167449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.746456917878629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.746456917878629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.746456917878629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.746456917878629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.746456917878629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.746456917878629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.746456917878629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.746456917878629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.746456917878629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.746456917878629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.746456917878629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.746456917878629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.746456917878629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.746456917878629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.746456917878629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.746456917878629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.746456917878629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.766100520980698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.766100520980698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.766100520980698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.766100520980698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.766100520980698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.766100520980698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.766100520980698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.766100520980698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.766100520980698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.766100520980698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.766100520980698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.766100520980698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.766100520980698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.766100520980698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.766100520980698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.766100520980698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.766100520980698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.775922322531732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.775922322531732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.775922322531732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.775922322531732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.775922322531732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.775922322531732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.775922322531732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.775922322531732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.775922322531732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.775922322531732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.775922322531732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.775922322531732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.775922322531732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.775922322531732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.775922322531732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.775922322531732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.775922322531732 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.785744124082767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.785744124082767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.785744124082767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.785744124082767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.785744124082767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.785744124082767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.785744124082767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.785744124082767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.785744124082767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.785744124082767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.785744124082767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.785744124082767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.785744124082767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.785744124082767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.785744124082767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.785744124082767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.785744124082767 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.167450350377579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.167450350377579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.167450350377579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.167450350377579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.150705315339821 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.1590778328587 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.163264091618139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165357220997859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.167450350377579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.167450350377579 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.59563306490862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.59563306490862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.59563306490862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.59563306490862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.33606975841776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.33606975841776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.33606975841776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.33606975841776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.33606975841776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.33606975841776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.33606975841776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.33606975841776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.33606975841776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.33606975841776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.33606975841776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.33606975841776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.33606975841776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.33606975841776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.33606975841776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.33606975841776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.33606975841776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.46585141166319 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.46585141166319 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.46585141166319 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.46585141166319 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.46585141166319 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.46585141166319 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.46585141166319 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.46585141166319 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.46585141166319 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.46585141166319 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.46585141166319 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.46585141166319 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.46585141166319 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.46585141166319 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.46585141166319 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.46585141166319 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.46585141166319 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.53074223828591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.53074223828591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.53074223828591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.53074223828591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.53074223828591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.53074223828591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.53074223828591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.53074223828591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.53074223828591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.53074223828591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.53074223828591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.53074223828591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.53074223828591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.53074223828591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.53074223828591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.53074223828591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.53074223828591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.56318765159726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.56318765159726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.56318765159726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.56318765159726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.56318765159726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.56318765159726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.56318765159726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.56318765159726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.56318765159726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.56318765159726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.56318765159726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.56318765159726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.56318765159726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.56318765159726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.56318765159726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.56318765159726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.56318765159726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59563306490862 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.59563306490862 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.59563306490862 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.59563306490862 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.59563306490862 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.59563306490862 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.59563306490862 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.59563306490862 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.59563306490862 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.59563306490862 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.59563306490862 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.59563306490862 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.59563306490862 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.59563306490862 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.59563306490862 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.59563306490862 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.59563306490862 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.44733814103028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.44733814103028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.44733814103028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.44733814103028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.10260432692725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.10260432692725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.10260432692725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.10260432692725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.10260432692725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.10260432692725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.10260432692725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.10260432692725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.10260432692725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.10260432692725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.10260432692725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.10260432692725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.10260432692725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.10260432692725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.10260432692725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.10260432692725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.10260432692725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.27497123397876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.27497123397876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.27497123397876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.27497123397876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.27497123397876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.27497123397876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.27497123397876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.27497123397876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.27497123397876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.27497123397876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.27497123397876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.27497123397876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.27497123397876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.27497123397876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.27497123397876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.27497123397876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.27497123397876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.36115468750452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.36115468750452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.36115468750452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36115468750452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36115468750452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.36115468750452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.36115468750452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.36115468750452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.36115468750452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.36115468750452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.36115468750452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.36115468750452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.36115468750452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.36115468750452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.36115468750452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.36115468750452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.36115468750452 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.4042464142674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.4042464142674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.4042464142674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.4042464142674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.4042464142674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.4042464142674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.4042464142674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.4042464142674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.4042464142674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.4042464142674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.4042464142674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.4042464142674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.4042464142674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.4042464142674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.4042464142674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.4042464142674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.4042464142674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.44733814103028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.44733814103028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.44733814103028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.44733814103028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.44733814103028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.44733814103028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.44733814103028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.44733814103028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.44733814103028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.44733814103028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.44733814103028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.44733814103028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.44733814103028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.44733814103028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.44733814103028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.44733814103028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.44733814103028 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.829037935016383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.829037935016383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.829037935016383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.829037935016383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.746134141514745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.746134141514745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.746134141514745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.746134141514745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.746134141514745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.746134141514745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.746134141514745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.746134141514745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.746134141514745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.746134141514745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.746134141514745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.746134141514745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.746134141514745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.746134141514745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.746134141514745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.746134141514745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.746134141514745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.787586038265564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.787586038265564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.787586038265564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.787586038265564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.787586038265564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.787586038265564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.787586038265564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.787586038265564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.787586038265564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.787586038265564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.787586038265564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.787586038265564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.787586038265564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.787586038265564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.787586038265564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.787586038265564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.787586038265564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.808311986640973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.808311986640973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.808311986640973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.808311986640973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.808311986640973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.808311986640973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.808311986640973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.808311986640973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.808311986640973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.808311986640973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.808311986640973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.808311986640973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.808311986640973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.808311986640973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.808311986640973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.808311986640973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.808311986640973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.818674960828678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.818674960828678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.818674960828678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.818674960828678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.818674960828678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.818674960828678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.818674960828678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.818674960828678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.818674960828678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.818674960828678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.818674960828678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.818674960828678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.818674960828678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.818674960828678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.818674960828678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.818674960828678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.818674960828678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.829037935016383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.829037935016383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.829037935016383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.829037935016383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.829037935016383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.829037935016383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.829037935016383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.829037935016383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.829037935016383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.829037935016383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.829037935016383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.829037935016383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.829037935016383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.829037935016383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.829037935016383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.829037935016383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.829037935016383 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.340390187848965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.340390187848965 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.340390187848965 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.340390187848965 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306351169064069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.306351169064069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.306351169064069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.306351169064069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.306351169064069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306351169064069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.306351169064069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.306351169064069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.306351169064069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.306351169064069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.306351169064069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.306351169064069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.306351169064069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.306351169064069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.306351169064069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.306351169064069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.306351169064069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323370678456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.323370678456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.323370678456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.323370678456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.323370678456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323370678456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.323370678456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.323370678456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.323370678456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.323370678456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.323370678456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.323370678456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.323370678456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.323370678456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.323370678456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.323370678456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.323370678456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.331880433152741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.331880433152741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.331880433152741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.331880433152741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.331880433152741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.331880433152741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.331880433152741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.331880433152741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.331880433152741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.331880433152741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.331880433152741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.331880433152741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.331880433152741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.331880433152741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.331880433152741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.331880433152741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.331880433152741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.336135310500853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.336135310500853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.336135310500853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.336135310500853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.336135310500853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.336135310500853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.336135310500853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.336135310500853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.336135310500853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.336135310500853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.336135310500853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.336135310500853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.336135310500853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.336135310500853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.336135310500853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.336135310500853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.336135310500853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340390187848965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.340390187848965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.340390187848965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.340390187848965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.340390187848965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.340390187848965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.340390187848965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.340390187848965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.340390187848965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.340390187848965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.340390187848965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.340390187848965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.340390187848965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.340390187848965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.340390187848965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.340390187848965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.340390187848965 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.142680889979687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.142680889979687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.142680889979687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.142680889979687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.156948978977656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.156948978977656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.156948978977656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.156948978977656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.156948978977656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.156948978977656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.156948978977656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.156948978977656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.156948978977656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.156948978977656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.156948978977656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.156948978977656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.156948978977656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.156948978977656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.156948978977656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.156948978977656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.156948978977656 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149814934478671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.149814934478671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.149814934478671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.149814934478671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.149814934478671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149814934478671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.149814934478671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.149814934478671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.149814934478671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.149814934478671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.149814934478671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.149814934478671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.149814934478671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.149814934478671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.149814934478671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.149814934478671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.149814934478671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.146247912229179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.146247912229179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.146247912229179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.146247912229179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.146247912229179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.146247912229179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.146247912229179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.146247912229179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.146247912229179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.146247912229179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.146247912229179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.146247912229179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.146247912229179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.146247912229179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.146247912229179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.146247912229179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.146247912229179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.144464401104433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.144464401104433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.144464401104433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.144464401104433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.144464401104433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.144464401104433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.144464401104433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.144464401104433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.144464401104433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.144464401104433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.144464401104433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.144464401104433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.144464401104433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.144464401104433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.144464401104433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.144464401104433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.144464401104433 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142680889979687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.142680889979687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.142680889979687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.142680889979687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.142680889979687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.142680889979687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.142680889979687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.142680889979687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.142680889979687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.142680889979687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.142680889979687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.142680889979687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.142680889979687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.142680889979687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.142680889979687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.142680889979687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.142680889979687 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.212898364997434 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.212898364997434 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.212898364997434 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.212898364997434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191608528497691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.191608528497691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191608528497691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191608528497691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191608528497691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191608528497691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191608528497691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191608528497691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191608528497691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191608528497691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191608528497691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191608528497691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191608528497691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191608528497691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191608528497691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191608528497691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191608528497691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.202253446747562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.202253446747562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.202253446747562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.202253446747562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.202253446747562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.202253446747562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.202253446747562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.202253446747562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.202253446747562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.202253446747562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.202253446747562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.202253446747562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.202253446747562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.202253446747562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.202253446747562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.202253446747562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.202253446747562 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.207575905872498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.207575905872498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.207575905872498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.207575905872498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.207575905872498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.207575905872498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.207575905872498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.207575905872498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.207575905872498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.207575905872498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.207575905872498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.207575905872498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.207575905872498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.207575905872498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.207575905872498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.207575905872498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.207575905872498 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210237135434966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210237135434966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210237135434966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210237135434966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210237135434966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210237135434966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210237135434966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210237135434966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210237135434966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210237135434966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210237135434966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210237135434966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.210237135434966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.210237135434966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.210237135434966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.210237135434966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.210237135434966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212898364997434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.212898364997434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.212898364997434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.212898364997434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.212898364997434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.212898364997434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.212898364997434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.212898364997434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.212898364997434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.212898364997434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.212898364997434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.212898364997434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.212898364997434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.212898364997434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.212898364997434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.212898364997434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.212898364997434 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.014699887283653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.014699887283653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.014699887283653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.014699887283653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0132298985552877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0132298985552877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0132298985552877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0132298985552877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0132298985552877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0132298985552877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0132298985552877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0132298985552877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0132298985552877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0132298985552877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0132298985552877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0132298985552877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0132298985552877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0132298985552877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0132298985552877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0132298985552877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0132298985552877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0139648929194704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0139648929194704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0139648929194704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0139648929194704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0139648929194704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0139648929194704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0139648929194704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0139648929194704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0139648929194704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0139648929194704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0139648929194704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0139648929194704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0139648929194704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0139648929194704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0139648929194704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0139648929194704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0139648929194704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0143323901015617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0143323901015617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0143323901015617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0143323901015617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0143323901015617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0143323901015617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0143323901015617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0143323901015617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0143323901015617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0143323901015617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0143323901015617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0143323901015617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0143323901015617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0143323901015617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0143323901015617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0143323901015617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0143323901015617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0145161386926074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0145161386926074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0145161386926074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0145161386926074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0145161386926074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0145161386926074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0145161386926074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0145161386926074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0145161386926074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0145161386926074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0145161386926074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0145161386926074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0145161386926074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0145161386926074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0145161386926074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0145161386926074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0145161386926074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.014699887283653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.014699887283653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.014699887283653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.014699887283653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.014699887283653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.014699887283653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.014699887283653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.014699887283653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.014699887283653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.014699887283653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.014699887283653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.014699887283653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.014699887283653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.014699887283653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.014699887283653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.014699887283653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.014699887283653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.325321408465973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.325321408465973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.325321408465973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.325321408465973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.292789267619376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.292789267619376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.292789267619376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.292789267619376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.292789267619376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.292789267619376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.292789267619376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.292789267619376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.292789267619376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.292789267619376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.292789267619376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.292789267619376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.292789267619376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.292789267619376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.292789267619376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.292789267619376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.292789267619376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309055338042674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.309055338042674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.309055338042674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.309055338042674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.309055338042674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.309055338042674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.309055338042674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.309055338042674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.309055338042674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.309055338042674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.309055338042674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.309055338042674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.309055338042674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.309055338042674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.309055338042674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.309055338042674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.309055338042674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317188373254323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.317188373254323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.317188373254323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.317188373254323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.317188373254323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317188373254323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.317188373254323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.317188373254323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.317188373254323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.317188373254323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.317188373254323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.317188373254323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.317188373254323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.317188373254323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.317188373254323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.317188373254323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.317188373254323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321254890860148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.321254890860148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321254890860148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321254890860148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321254890860148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321254890860148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321254890860148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321254890860148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321254890860148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321254890860148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.321254890860148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.321254890860148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.321254890860148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.321254890860148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.321254890860148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.321254890860148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.321254890860148 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325321408465973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.325321408465973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.325321408465973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.325321408465973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.325321408465973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.325321408465973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.325321408465973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.325321408465973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.325321408465973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.325321408465973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.325321408465973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.325321408465973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.325321408465973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.325321408465973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.325321408465973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.325321408465973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.325321408465973 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.98264337630601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.98264337630601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.98264337630601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.98264337630601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.28090771393662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.28090771393662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.28090771393662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.28090771393662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.28090771393662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.28090771393662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.28090771393662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.28090771393662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.28090771393662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.28090771393662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.28090771393662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.28090771393662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.28090771393662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.28090771393662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.28090771393662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.28090771393662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.28090771393662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.13177554512131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.13177554512131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.13177554512131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.13177554512131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.13177554512131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.13177554512131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.13177554512131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.13177554512131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.13177554512131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.13177554512131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.13177554512131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.13177554512131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.13177554512131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.13177554512131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.13177554512131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.13177554512131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.13177554512131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05720946071366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.05720946071366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05720946071366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.05720946071366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.05720946071366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.05720946071366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.05720946071366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.05720946071366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.05720946071366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.05720946071366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.05720946071366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.05720946071366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.05720946071366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.05720946071366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.05720946071366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.05720946071366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.05720946071366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.01992641850984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.01992641850984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.01992641850984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.01992641850984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.01992641850984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.01992641850984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.01992641850984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.01992641850984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.01992641850984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.01992641850984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.01992641850984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.01992641850984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.01992641850984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.01992641850984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.01992641850984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.01992641850984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.01992641850984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.98264337630601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.98264337630601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.98264337630601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.98264337630601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.98264337630601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.98264337630601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.98264337630601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.98264337630601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.98264337630601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.98264337630601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.98264337630601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.98264337630601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.98264337630601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.98264337630601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.98264337630601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.98264337630601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.98264337630601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.31251884496872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.31251884496872 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.31251884496872 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.31251884496872 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.64377072946559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.64377072946559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.64377072946559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.64377072946559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.64377072946559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.64377072946559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.64377072946559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.64377072946559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.64377072946559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.64377072946559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.64377072946559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.64377072946559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.64377072946559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.64377072946559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.64377072946559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.64377072946559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.64377072946559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.47814478721716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.47814478721716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.47814478721716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.47814478721716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.47814478721716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.47814478721716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.47814478721716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.47814478721716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.47814478721716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.47814478721716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.47814478721716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.47814478721716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.47814478721716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.47814478721716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.47814478721716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.47814478721716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.47814478721716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39533181609294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39533181609294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39533181609294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39533181609294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39533181609294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39533181609294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39533181609294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39533181609294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39533181609294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39533181609294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39533181609294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39533181609294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.39533181609294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.39533181609294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.39533181609294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.39533181609294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.39533181609294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.35392533053083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.35392533053083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.35392533053083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.35392533053083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35392533053083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35392533053083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.35392533053083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.35392533053083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.35392533053083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.35392533053083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.35392533053083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.35392533053083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.35392533053083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.35392533053083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.35392533053083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.35392533053083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.35392533053083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.31251884496872 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.31251884496872 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.31251884496872 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.31251884496872 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.31251884496872 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.31251884496872 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.31251884496872 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.31251884496872 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.31251884496872 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.31251884496872 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.31251884496872 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.31251884496872 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.31251884496872 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.31251884496872 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.31251884496872 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.31251884496872 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.31251884496872 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.44068149741332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.44068149741332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.44068149741332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.44068149741332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.78474964715465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.78474964715465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.78474964715465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.78474964715465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.78474964715465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.78474964715465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.78474964715465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.78474964715465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.78474964715465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.78474964715465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.78474964715465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.78474964715465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.78474964715465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.78474964715465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.78474964715465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.78474964715465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.78474964715465 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.61271557228398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.61271557228398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.61271557228398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.61271557228398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.61271557228398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.61271557228398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.61271557228398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.61271557228398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.61271557228398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.61271557228398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.61271557228398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.61271557228398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.61271557228398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.61271557228398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.61271557228398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.61271557228398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.61271557228398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.52669853484865 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.52669853484865 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.52669853484865 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.52669853484865 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.52669853484865 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.52669853484865 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.52669853484865 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.52669853484865 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.52669853484865 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.52669853484865 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.52669853484865 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.52669853484865 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.52669853484865 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.52669853484865 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.52669853484865 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.52669853484865 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.52669853484865 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.48369001613098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.48369001613098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.48369001613098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.48369001613098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.48369001613098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48369001613098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48369001613098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.48369001613098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.48369001613098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.48369001613098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.48369001613098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.48369001613098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.48369001613098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.48369001613098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.48369001613098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.48369001613098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.48369001613098 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44068149741332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.44068149741332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.44068149741332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.44068149741332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.44068149741332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.44068149741332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.44068149741332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.44068149741332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.44068149741332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.44068149741332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.44068149741332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.44068149741332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.44068149741332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.44068149741332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.44068149741332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.44068149741332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.44068149741332 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.25238791943373 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.25238791943373 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.25238791943373 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.4776267113771 -8.50113003699975e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.36500731540541 -3.41785948349973e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.30869761741957 -8.76224206749724e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.25238791943373 -8.33475547110672e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231763831017675 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231763831017675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231763831017675 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231763831017675 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.208587447915907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.208587447915907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.208587447915907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.208587447915907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.208587447915907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.208587447915907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.208587447915907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.208587447915907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.208587447915907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.208587447915907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.208587447915907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.208587447915907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.208587447915907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.208587447915907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.208587447915907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.208587447915907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.208587447915907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220175639466791 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.220175639466791 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.220175639466791 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.220175639466791 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.220175639466791 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220175639466791 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.220175639466791 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.220175639466791 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.220175639466791 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.220175639466791 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.220175639466791 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.220175639466791 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.220175639466791 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.220175639466791 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.220175639466791 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.220175639466791 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.220175639466791 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225969735242233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.225969735242233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.225969735242233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.225969735242233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.225969735242233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225969735242233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.225969735242233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.225969735242233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.225969735242233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.225969735242233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.225969735242233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.225969735242233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.225969735242233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.225969735242233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.225969735242233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.225969735242233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.225969735242233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228866783129954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.228866783129954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228866783129954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228866783129954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228866783129954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228866783129954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228866783129954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228866783129954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228866783129954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228866783129954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228866783129954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228866783129954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228866783129954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228866783129954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228866783129954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228866783129954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228866783129954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231763831017675 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.231763831017675 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.231763831017675 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231763831017675 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231763831017675 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231763831017675 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231763831017675 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231763831017675 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231763831017675 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231763831017675 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231763831017675 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231763831017675 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231763831017675 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231763831017675 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231763831017675 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231763831017675 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231763831017675 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.474234889816793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.474234889816793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.474234889816793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.474234889816793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.521658378798472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.521658378798472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.521658378798472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.521658378798472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.521658378798472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.521658378798472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.521658378798472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.521658378798472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.521658378798472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.521658378798472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.521658378798472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.521658378798472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.521658378798472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.521658378798472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.521658378798472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.521658378798472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.521658378798472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.497946634307633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.497946634307633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.497946634307633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.497946634307633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.497946634307633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.497946634307633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.497946634307633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.497946634307633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.497946634307633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.497946634307633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.497946634307633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.497946634307633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.497946634307633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.497946634307633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.497946634307633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.497946634307633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.497946634307633 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.486090762062213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.486090762062213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.486090762062213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.486090762062213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.486090762062213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.486090762062213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.486090762062213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.486090762062213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.486090762062213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.486090762062213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.486090762062213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.486090762062213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.486090762062213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.486090762062213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.486090762062213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.486090762062213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.486090762062213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.480162825939503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.480162825939503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.480162825939503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.480162825939503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.480162825939503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.480162825939503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.480162825939503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.480162825939503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.480162825939503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.480162825939503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.480162825939503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.480162825939503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.480162825939503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.480162825939503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.480162825939503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.480162825939503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.480162825939503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474234889816793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.474234889816793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.474234889816793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.474234889816793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.474234889816793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474234889816793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.474234889816793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.474234889816793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.474234889816793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.474234889816793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.474234889816793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.474234889816793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.474234889816793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.474234889816793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.474234889816793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.474234889816793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.474234889816793 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.162509634667823 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.162509634667823 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.162509634667823 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.162509634667823 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.178760598134606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.178760598134606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.178760598134606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.178760598134606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.178760598134606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.178760598134606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.178760598134606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.178760598134606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.178760598134606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.178760598134606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.178760598134606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.178760598134606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.178760598134606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.178760598134606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.178760598134606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.178760598134606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.178760598134606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170635116401214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.170635116401214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.170635116401214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.170635116401214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.170635116401214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.170635116401214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.170635116401214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.170635116401214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.170635116401214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.170635116401214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.170635116401214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.170635116401214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.170635116401214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.170635116401214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.170635116401214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.170635116401214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.170635116401214 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.166572375534519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.166572375534519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.166572375534519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.166572375534519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.166572375534519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.166572375534519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.166572375534519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.166572375534519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.166572375534519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.166572375534519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.166572375534519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.166572375534519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.166572375534519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.166572375534519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.166572375534519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.166572375534519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.166572375534519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164541005101171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.164541005101171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.164541005101171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.164541005101171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.164541005101171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.164541005101171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.164541005101171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.164541005101171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.164541005101171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.164541005101171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.164541005101171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.164541005101171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.164541005101171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.164541005101171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.164541005101171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.164541005101171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.164541005101171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162509634667823 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.162509634667823 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.162509634667823 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.162509634667823 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.162509634667823 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.162509634667823 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.162509634667823 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.162509634667823 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.162509634667823 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.162509634667823 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.162509634667823 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.162509634667823 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.162509634667823 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.162509634667823 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.162509634667823 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.162509634667823 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.162509634667823 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.421159516222876 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.421159516222876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.421159516222876 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.421159516222876 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.463275467845164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.463275467845164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.463275467845164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.463275467845164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.463275467845164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.463275467845164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.463275467845164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.463275467845164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.463275467845164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.463275467845164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.463275467845164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.463275467845164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.463275467845164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.463275467845164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.463275467845164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.463275467845164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.463275467845164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44221749203402 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.44221749203402 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.44221749203402 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.44221749203402 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.44221749203402 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44221749203402 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.44221749203402 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.44221749203402 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.44221749203402 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.44221749203402 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.44221749203402 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.44221749203402 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.44221749203402 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.44221749203402 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.44221749203402 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.44221749203402 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.44221749203402 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431688504128448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431688504128448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431688504128448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431688504128448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431688504128448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431688504128448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431688504128448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431688504128448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431688504128448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431688504128448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431688504128448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431688504128448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431688504128448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431688504128448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431688504128448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.431688504128448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.431688504128448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426424010175662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426424010175662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426424010175662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426424010175662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426424010175662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426424010175662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426424010175662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426424010175662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426424010175662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426424010175662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426424010175662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.426424010175662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.426424010175662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.426424010175662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.426424010175662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.426424010175662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.426424010175662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421159516222876 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.421159516222876 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.421159516222876 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.421159516222876 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.421159516222876 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.421159516222876 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.421159516222876 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.421159516222876 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.421159516222876 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.421159516222876 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.421159516222876 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.421159516222876 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.421159516222876 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.421159516222876 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.421159516222876 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.421159516222876 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.421159516222876 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.869249687822985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.869249687822985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.869249687822985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.869249687822985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.782324719040686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.782324719040686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.782324719040686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.782324719040686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.782324719040686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.782324719040686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.782324719040686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.782324719040686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.782324719040686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.782324719040686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.782324719040686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.782324719040686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.782324719040686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.782324719040686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.782324719040686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.782324719040686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.782324719040686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.825787203431835 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.825787203431835 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.825787203431835 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.825787203431835 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.825787203431835 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.825787203431835 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.825787203431835 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.825787203431835 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.825787203431835 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.825787203431835 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.825787203431835 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.825787203431835 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.825787203431835 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.825787203431835 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.825787203431835 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.825787203431835 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.825787203431835 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84751844562741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.84751844562741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.84751844562741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.84751844562741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.84751844562741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.84751844562741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.84751844562741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.84751844562741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.84751844562741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.84751844562741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.84751844562741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.84751844562741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.84751844562741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.84751844562741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.84751844562741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.84751844562741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.84751844562741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.858384066725197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.858384066725197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.858384066725197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.858384066725197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.858384066725197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.858384066725197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.858384066725197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.858384066725197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.858384066725197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.858384066725197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.858384066725197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.858384066725197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.858384066725197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.858384066725197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.858384066725197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.858384066725197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.858384066725197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869249687822985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.869249687822985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.869249687822985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.869249687822985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.869249687822985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.869249687822985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869249687822985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.869249687822985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.869249687822985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.869249687822985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.869249687822985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.869249687822985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.869249687822985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.869249687822985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.869249687822985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.869249687822985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.869249687822985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.23871913588194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.23871913588194 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.23871913588194 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.23871913588194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11484722229374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11484722229374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11484722229374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11484722229374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11484722229374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11484722229374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11484722229374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11484722229374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.11484722229374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.11484722229374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.11484722229374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.11484722229374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.11484722229374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.11484722229374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.11484722229374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.11484722229374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.11484722229374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17678317908784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17678317908784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17678317908784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17678317908784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17678317908784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17678317908784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17678317908784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17678317908784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17678317908784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17678317908784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17678317908784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17678317908784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17678317908784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17678317908784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17678317908784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.17678317908784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.17678317908784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20775115748489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20775115748489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20775115748489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20775115748489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20775115748489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20775115748489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20775115748489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20775115748489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20775115748489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20775115748489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20775115748489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20775115748489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20775115748489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20775115748489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20775115748489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20775115748489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20775115748489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22323514668341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22323514668341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22323514668341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22323514668341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22323514668341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22323514668341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22323514668341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22323514668341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22323514668341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22323514668341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22323514668341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22323514668341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22323514668341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22323514668341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22323514668341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22323514668341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22323514668341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.23871913588194 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.23871913588194 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.23871913588194 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.23871913588194 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.23871913588194 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.23871913588194 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.23871913588194 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.23871913588194 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.23871913588194 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.23871913588194 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.23871913588194 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.23871913588194 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.23871913588194 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.23871913588194 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.23871913588194 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.23871913588194 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.23871913588194 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.78210076834929 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.78210076834929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.78210076834929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.78210076834929 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06031084518421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.06031084518421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.06031084518421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.06031084518421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.06031084518421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.06031084518421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.06031084518421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.06031084518421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.06031084518421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.06031084518421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.06031084518421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.06031084518421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.06031084518421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.06031084518421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.06031084518421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.06031084518421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.06031084518421 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.92120580676675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.92120580676675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.92120580676675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.92120580676675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.92120580676675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.92120580676675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.92120580676675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.92120580676675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.92120580676675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.92120580676675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.92120580676675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.92120580676675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.92120580676675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.92120580676675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.92120580676675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.92120580676675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.92120580676675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.85165328755802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.85165328755802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.85165328755802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.85165328755802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.85165328755802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.85165328755802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.85165328755802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.85165328755802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.85165328755802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.85165328755802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.85165328755802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.85165328755802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.85165328755802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.85165328755802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.85165328755802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.85165328755802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.85165328755802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.81687702795365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.81687702795365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.81687702795365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.81687702795365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.81687702795365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.81687702795365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.81687702795365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.81687702795365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.81687702795365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.81687702795365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.81687702795365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.81687702795365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.81687702795365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.81687702795365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.81687702795365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.81687702795365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.81687702795365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78210076834929 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.78210076834929 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.78210076834929 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78210076834929 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.78210076834929 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.78210076834929 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.78210076834929 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.78210076834929 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.78210076834929 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.78210076834929 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.78210076834929 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.78210076834929 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.78210076834929 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.78210076834929 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.78210076834929 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.78210076834929 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.78210076834929 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.29625243518317 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.29625243518317 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.29625243518317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.29625243518317 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.62587767870149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.62587767870149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.62587767870149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.62587767870149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.62587767870149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.62587767870149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.62587767870149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.62587767870149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.62587767870149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.62587767870149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.62587767870149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.62587767870149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.62587767870149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.62587767870149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.62587767870149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.62587767870149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.62587767870149 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.46106505694233 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.46106505694233 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.46106505694233 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.46106505694233 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.46106505694233 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.46106505694233 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.46106505694233 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.46106505694233 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.46106505694233 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.46106505694233 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.46106505694233 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.46106505694233 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.46106505694233 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.46106505694233 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.46106505694233 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.46106505694233 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.46106505694233 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.37865874606275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.37865874606275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.37865874606275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.37865874606275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.37865874606275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.37865874606275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.37865874606275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.37865874606275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.37865874606275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.37865874606275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.37865874606275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.37865874606275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.37865874606275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.37865874606275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.37865874606275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.37865874606275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.37865874606275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.33745559062296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.33745559062296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.33745559062296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.33745559062296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.33745559062296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33745559062296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33745559062296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33745559062296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.33745559062296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.33745559062296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.33745559062296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.33745559062296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.33745559062296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.33745559062296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.33745559062296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.33745559062296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.33745559062296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29625243518317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.29625243518317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.29625243518317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29625243518317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29625243518317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29625243518317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29625243518317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29625243518317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.29625243518317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.29625243518317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.29625243518317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.29625243518317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.29625243518317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.29625243518317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.29625243518317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.29625243518317 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.29625243518317 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.398713946847759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.398713946847759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.398713946847759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.398713946847759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.438585341532535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.418649644190147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408681795518953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.403697871183356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.398713946847759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.398713946847759 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.789921391654666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.789921391654666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.789921391654666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.789921391654666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.868913530820132 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.868913530820132 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.868913530820132 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.868913530820132 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.868913530820132 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.868913530820132 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.868913530820132 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.868913530820132 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.868913530820132 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.868913530820132 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.868913530820132 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.868913530820132 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.868913530820132 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.868913530820132 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.868913530820132 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.868913530820132 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.868913530820132 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.829417461237399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.829417461237399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.829417461237399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.829417461237399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.829417461237399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.829417461237399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.829417461237399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.829417461237399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.829417461237399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.829417461237399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.829417461237399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.829417461237399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.829417461237399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.829417461237399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.829417461237399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.829417461237399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.829417461237399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.809669426446032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.809669426446032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.809669426446032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.809669426446032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.809669426446032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.809669426446032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.809669426446032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.809669426446032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.809669426446032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.809669426446032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.809669426446032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.809669426446032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.809669426446032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.809669426446032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.809669426446032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.809669426446032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.809669426446032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.799795409050349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.799795409050349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.799795409050349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.799795409050349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.799795409050349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.799795409050349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.799795409050349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.799795409050349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.799795409050349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.799795409050349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.799795409050349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.799795409050349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.799795409050349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.799795409050349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.799795409050349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.799795409050349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.799795409050349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.789921391654666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.789921391654666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.789921391654666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.789921391654666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.789921391654666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.789921391654666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.789921391654666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.789921391654666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.789921391654666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.789921391654666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.789921391654666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.789921391654666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.789921391654666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.789921391654666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.789921391654666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.789921391654666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.789921391654666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.921200169060185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.921200169060185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.921200169060185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.921200169060185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.0133201859662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.0133201859662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.0133201859662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.0133201859662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.0133201859662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.0133201859662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.0133201859662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.0133201859662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.0133201859662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.0133201859662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.0133201859662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.0133201859662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.0133201859662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.0133201859662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.0133201859662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.0133201859662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.0133201859662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.967260177513195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.967260177513195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.967260177513195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.967260177513195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.967260177513195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.967260177513195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.967260177513195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.967260177513195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.967260177513195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.967260177513195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.967260177513195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.967260177513195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.967260177513195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.967260177513195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.967260177513195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.967260177513195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.967260177513195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.94423017328669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.94423017328669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.94423017328669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.94423017328669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.94423017328669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.94423017328669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.94423017328669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.94423017328669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.94423017328669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.94423017328669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.94423017328669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.94423017328669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.94423017328669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.94423017328669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.94423017328669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.94423017328669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.94423017328669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.932715171173438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.932715171173438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.932715171173438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.932715171173438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.932715171173438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.932715171173438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.932715171173438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.932715171173438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.932715171173438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.932715171173438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.932715171173438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.932715171173438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.932715171173438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.932715171173438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.932715171173438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.932715171173438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.932715171173438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921200169060185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.921200169060185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.921200169060185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.921200169060185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.921200169060185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.921200169060185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.921200169060185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.921200169060185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.921200169060185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.921200169060185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.921200169060185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.921200169060185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.921200169060185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.921200169060185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.921200169060185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.921200169060185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.921200169060185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.10240222162018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.10240222162018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.10240222162018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.10240222162018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.2126424437822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.2126424437822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.2126424437822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.2126424437822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.2126424437822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.2126424437822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.2126424437822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.2126424437822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.2126424437822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.2126424437822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.2126424437822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.2126424437822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.2126424437822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.2126424437822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.2126424437822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.2126424437822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.2126424437822 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15752233270119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.15752233270119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.15752233270119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15752233270119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15752233270119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15752233270119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15752233270119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15752233270119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15752233270119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.15752233270119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.15752233270119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15752233270119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.15752233270119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.15752233270119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.15752233270119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.15752233270119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.15752233270119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.12996227716069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.12996227716069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.12996227716069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.12996227716069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.12996227716069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.12996227716069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.12996227716069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.12996227716069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.12996227716069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.12996227716069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.12996227716069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.12996227716069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.12996227716069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.12996227716069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.12996227716069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.12996227716069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.12996227716069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.11618224939044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.11618224939044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.11618224939044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.11618224939044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.11618224939044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.11618224939044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.11618224939044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.11618224939044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.11618224939044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.11618224939044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.11618224939044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.11618224939044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.11618224939044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.11618224939044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.11618224939044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.11618224939044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.11618224939044 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10240222162018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10240222162018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10240222162018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10240222162018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10240222162018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10240222162018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10240222162018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10240222162018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10240222162018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10240222162018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10240222162018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10240222162018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.10240222162018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.10240222162018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.10240222162018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.10240222162018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.10240222162018 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.54252536634185 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.54252536634185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.54252536634185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.54252536634185 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.18827282970766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.18827282970766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.18827282970766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.18827282970766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.18827282970766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.18827282970766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.18827282970766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.18827282970766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.18827282970766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.18827282970766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.18827282970766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.18827282970766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.18827282970766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.18827282970766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.18827282970766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.18827282970766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.18827282970766 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36539909802475 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.36539909802475 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.36539909802475 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.36539909802475 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.36539909802475 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36539909802475 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36539909802475 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.36539909802475 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.36539909802475 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.36539909802475 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.36539909802475 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.36539909802475 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.36539909802475 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.36539909802475 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.36539909802475 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.36539909802475 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.36539909802475 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.4539622321833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.4539622321833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.4539622321833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.4539622321833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.4539622321833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.4539622321833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.4539622321833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.4539622321833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.4539622321833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.4539622321833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.4539622321833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.4539622321833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.4539622321833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.4539622321833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.4539622321833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.4539622321833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.4539622321833 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.49824379926257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.49824379926257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.49824379926257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.49824379926257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.49824379926257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.49824379926257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.49824379926257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.49824379926257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.49824379926257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.49824379926257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.49824379926257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.49824379926257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.49824379926257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.49824379926257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.49824379926257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.49824379926257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.49824379926257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54252536634185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.54252536634185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.54252536634185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.54252536634185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.54252536634185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.54252536634185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.54252536634185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.54252536634185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.54252536634185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.54252536634185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.54252536634185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.54252536634185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.54252536634185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.54252536634185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.54252536634185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.54252536634185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.54252536634185 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.106111810105912 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.106111810105912 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.106111810105912 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.106111810105912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116722991116504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.116722991116504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.116722991116504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116722991116504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116722991116504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116722991116504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116722991116504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116722991116504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116722991116504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116722991116504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116722991116504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.116722991116504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.116722991116504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.116722991116504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.116722991116504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.116722991116504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.116722991116504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111417400611208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.111417400611208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.111417400611208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.111417400611208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.111417400611208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.111417400611208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111417400611208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.111417400611208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.111417400611208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.111417400611208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.111417400611208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.111417400611208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.111417400611208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.111417400611208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.111417400611208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.111417400611208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.111417400611208 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.10876460535856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.10876460535856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.10876460535856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.10876460535856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.10876460535856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.10876460535856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.10876460535856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.10876460535856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.10876460535856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.10876460535856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.10876460535856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.10876460535856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.10876460535856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.10876460535856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.10876460535856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.10876460535856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.10876460535856 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.107438207732236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.107438207732236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.107438207732236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.107438207732236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.107438207732236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.107438207732236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.107438207732236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.107438207732236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.107438207732236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.107438207732236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.107438207732236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.107438207732236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.107438207732236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.107438207732236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.107438207732236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.107438207732236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.107438207732236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106111810105912 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106111810105912 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106111810105912 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106111810105912 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106111810105912 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106111810105912 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106111810105912 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106111810105912 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106111810105912 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106111810105912 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.106111810105912 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.106111810105912 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.106111810105912 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.106111810105912 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.106111810105912 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.106111810105912 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.106111810105912 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.373934826311941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.373934826311941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.373934826311941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.373934826311941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.336541343680747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.336541343680747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.336541343680747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.336541343680747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.336541343680747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.336541343680747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.336541343680747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.336541343680747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.336541343680747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.336541343680747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.336541343680747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.336541343680747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.336541343680747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.336541343680747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.336541343680747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.336541343680747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.336541343680747 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.355238084996344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.355238084996344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.355238084996344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.355238084996344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.355238084996344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.355238084996344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.355238084996344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.355238084996344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.355238084996344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.355238084996344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.355238084996344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.355238084996344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.355238084996344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.355238084996344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.355238084996344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.355238084996344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.355238084996344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.364586455654142 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.364586455654142 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.364586455654142 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.364586455654142 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.364586455654142 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.364586455654142 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.364586455654142 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.364586455654142 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.364586455654142 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.364586455654142 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.364586455654142 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.364586455654142 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.364586455654142 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.364586455654142 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.364586455654142 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.364586455654142 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.364586455654142 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.369260640983041 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.369260640983041 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.369260640983041 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.369260640983041 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.369260640983041 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.369260640983041 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.369260640983041 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.369260640983041 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.369260640983041 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.369260640983041 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.369260640983041 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.369260640983041 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.369260640983041 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.369260640983041 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.369260640983041 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.369260640983041 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.369260640983041 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373934826311941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.373934826311941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.373934826311941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.373934826311941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373934826311941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373934826311941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373934826311941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373934826311941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373934826311941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373934826311941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373934826311941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373934826311941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373934826311941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.373934826311941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.373934826311941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.373934826311941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.373934826311941 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.111796882413273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.111796882413273 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.111796882413273 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.111796882413273 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.1229765706546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.1229765706546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.1229765706546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.1229765706546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.1229765706546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.1229765706546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.1229765706546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.1229765706546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.1229765706546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.1229765706546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.1229765706546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.1229765706546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.1229765706546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.1229765706546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.1229765706546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.1229765706546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.1229765706546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.117386726533936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.117386726533936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.117386726533936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.117386726533936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.117386726533936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.117386726533936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.117386726533936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.117386726533936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.117386726533936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.117386726533936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.117386726533936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.117386726533936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.117386726533936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.117386726533936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.117386726533936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.117386726533936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.117386726533936 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.114591804473604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.114591804473604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.114591804473604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.114591804473604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.114591804473604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.114591804473604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.114591804473604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.114591804473604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.114591804473604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.114591804473604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.114591804473604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.114591804473604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.114591804473604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.114591804473604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.114591804473604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.114591804473604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.114591804473604 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.113194343443439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.113194343443439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.113194343443439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.113194343443439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.113194343443439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.113194343443439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.113194343443439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.113194343443439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.113194343443439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.113194343443439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.113194343443439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.113194343443439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.113194343443439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.113194343443439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.113194343443439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.113194343443439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.113194343443439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111796882413273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.111796882413273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.111796882413273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.111796882413273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.111796882413273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.111796882413273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111796882413273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.111796882413273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.111796882413273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.111796882413273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.111796882413273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.111796882413273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.111796882413273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.111796882413273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.111796882413273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.111796882413273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.111796882413273 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.234131919532545 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.234131919532545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.234131919532545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.234131919532545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210718727579291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210718727579291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210718727579291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210718727579291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210718727579291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210718727579291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210718727579291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210718727579291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210718727579291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210718727579291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210718727579291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210718727579291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210718727579291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.210718727579291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.210718727579291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.210718727579291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.210718727579291 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222425323555918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222425323555918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222425323555918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222425323555918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222425323555918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222425323555918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222425323555918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222425323555918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222425323555918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222425323555918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222425323555918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222425323555918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222425323555918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222425323555918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222425323555918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222425323555918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.222425323555918 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228278621544232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.228278621544232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.228278621544232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228278621544232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228278621544232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228278621544232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228278621544232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228278621544232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228278621544232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228278621544232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228278621544232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228278621544232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228278621544232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228278621544232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228278621544232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228278621544232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228278621544232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231205270538388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.231205270538388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.231205270538388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.231205270538388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231205270538388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231205270538388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231205270538388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231205270538388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231205270538388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231205270538388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231205270538388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231205270538388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231205270538388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231205270538388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231205270538388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231205270538388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231205270538388 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234131919532545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.234131919532545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.234131919532545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.234131919532545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.234131919532545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.234131919532545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234131919532545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.234131919532545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.234131919532545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.234131919532545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.234131919532545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.234131919532545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.234131919532545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.234131919532545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.234131919532545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.234131919532545 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.234131919532545 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.74686070438505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.74686070438505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.74686070438505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.74686070438505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.821546774823555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.821546774823555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.821546774823555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.821546774823555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.821546774823555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.821546774823555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.821546774823555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.821546774823555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.821546774823555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.821546774823555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.821546774823555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.821546774823555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.821546774823555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.821546774823555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.821546774823555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.821546774823555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.821546774823555 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.784203739604302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.784203739604302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.784203739604302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.784203739604302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.784203739604302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.784203739604302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.784203739604302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.784203739604302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.784203739604302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.784203739604302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.784203739604302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.784203739604302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.784203739604302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.784203739604302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.784203739604302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.784203739604302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.784203739604302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.765532221994676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.765532221994676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.765532221994676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.765532221994676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.765532221994676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.765532221994676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.765532221994676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.765532221994676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.765532221994676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.765532221994676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.765532221994676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.765532221994676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.765532221994676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.765532221994676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.765532221994676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.765532221994676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.765532221994676 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.756196463189863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.756196463189863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.756196463189863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.756196463189863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.756196463189863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.756196463189863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.756196463189863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.756196463189863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.756196463189863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.756196463189863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.756196463189863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.756196463189863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.756196463189863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.756196463189863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.756196463189863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.756196463189863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.756196463189863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.74686070438505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.74686070438505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.74686070438505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.74686070438505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.74686070438505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.74686070438505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.74686070438505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.74686070438505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.74686070438505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.74686070438505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.74686070438505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.74686070438505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.74686070438505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.74686070438505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.74686070438505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.74686070438505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.74686070438505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.16227252851083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.16227252851083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.16227252851083 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.16227252851083 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.27849978136191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.27849978136191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.27849978136191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.27849978136191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.27849978136191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.27849978136191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.27849978136191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.27849978136191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.27849978136191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.27849978136191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.27849978136191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.27849978136191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.27849978136191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.27849978136191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.27849978136191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.27849978136191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.27849978136191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22038615493637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.22038615493637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.22038615493637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.22038615493637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.22038615493637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.22038615493637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.22038615493637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.22038615493637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.22038615493637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.22038615493637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.22038615493637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.22038615493637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.22038615493637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.22038615493637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.22038615493637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.22038615493637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.22038615493637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1913293417236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.1913293417236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.1913293417236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.1913293417236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.1913293417236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1913293417236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.1913293417236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.1913293417236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.1913293417236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.1913293417236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.1913293417236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.1913293417236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.1913293417236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.1913293417236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.1913293417236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.1913293417236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.1913293417236 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.17680093511722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.17680093511722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.17680093511722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.17680093511722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.17680093511722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.17680093511722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.17680093511722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.17680093511722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.17680093511722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.17680093511722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.17680093511722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.17680093511722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.17680093511722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.17680093511722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.17680093511722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.17680093511722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.17680093511722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16227252851083 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.16227252851083 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.16227252851083 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.16227252851083 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.16227252851083 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16227252851083 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.16227252851083 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.16227252851083 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.16227252851083 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.16227252851083 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.16227252851083 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.16227252851083 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.16227252851083 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.16227252851083 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.16227252851083 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.16227252851083 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.16227252851083 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0595725738903564 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0595725738903564 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0595725738903564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0595725738903564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.065529831279392 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.065529831279392 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.065529831279392 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.065529831279392 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.065529831279392 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.065529831279392 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.065529831279392 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.065529831279392 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.065529831279392 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.065529831279392 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.065529831279392 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.065529831279392 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.065529831279392 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.065529831279392 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.065529831279392 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.065529831279392 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.065529831279392 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.065529831279392 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0625512025848742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0625512025848742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0625512025848742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0625512025848742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0625512025848742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0625512025848742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0625512025848742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0625512025848742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0625512025848742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0625512025848742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0625512025848742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0625512025848742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0625512025848742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0625512025848742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0625512025848742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0625512025848742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0625512025848742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0625512025848742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0610618882376153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0610618882376153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0610618882376153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0610618882376153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0610618882376153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0610618882376153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0610618882376153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0610618882376153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0610618882376153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0610618882376153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0610618882376153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0610618882376153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0610618882376153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0610618882376153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0610618882376153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0610618882376153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0610618882376153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0610618882376153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0603172310639859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0603172310639859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0603172310639859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0603172310639859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0603172310639859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0603172310639859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0603172310639859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0603172310639859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0603172310639859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0603172310639859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0603172310639859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0603172310639859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0603172310639859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0603172310639859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0603172310639859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0603172310639859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0603172310639859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0603172310639859 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0595725738903564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0595725738903564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0595725738903564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0595725738903564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0595725738903564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0595725738903564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0595725738903564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0595725738903564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0595725738903564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0595725738903564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0595725738903564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0595725738903564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0595725738903564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0595725738903564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0595725738903564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0595725738903564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0595725738903564 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0595725738903564 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.17899785211445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.17899785211445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.17899785211445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.17899785211445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.06109806690301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.06109806690301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.06109806690301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.06109806690301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.06109806690301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.06109806690301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.06109806690301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.06109806690301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.06109806690301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.06109806690301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.06109806690301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.06109806690301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.06109806690301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.06109806690301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.06109806690301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.06109806690301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.06109806690301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.12004795950873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.12004795950873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.12004795950873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.12004795950873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.12004795950873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.12004795950873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.12004795950873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.12004795950873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.12004795950873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.12004795950873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.12004795950873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.12004795950873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.12004795950873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.12004795950873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.12004795950873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.12004795950873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.12004795950873 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14952290581159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14952290581159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14952290581159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14952290581159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14952290581159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14952290581159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14952290581159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14952290581159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14952290581159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14952290581159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14952290581159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14952290581159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14952290581159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14952290581159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14952290581159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14952290581159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14952290581159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16426037896302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.16426037896302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16426037896302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16426037896302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16426037896302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16426037896302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16426037896302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16426037896302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16426037896302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16426037896302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16426037896302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16426037896302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16426037896302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16426037896302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16426037896302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16426037896302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16426037896302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17899785211445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17899785211445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17899785211445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17899785211445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17899785211445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17899785211445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17899785211445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17899785211445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17899785211445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17899785211445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17899785211445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17899785211445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17899785211445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17899785211445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17899785211445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17899785211445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.17899785211445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1610206978191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1610206978191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1610206978191 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1610206978191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04491862803719 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.04491862803719 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.04491862803719 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.04491862803719 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.04491862803719 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.04491862803719 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.04491862803719 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04491862803719 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.04491862803719 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.04491862803719 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.04491862803719 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.04491862803719 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.04491862803719 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.04491862803719 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.04491862803719 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.04491862803719 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.04491862803719 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10296966292815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10296966292815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10296966292815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10296966292815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10296966292815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10296966292815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10296966292815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10296966292815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10296966292815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10296966292815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10296966292815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.10296966292815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.10296966292815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.10296966292815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.10296966292815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.10296966292815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.10296966292815 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13199518037363 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13199518037363 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13199518037363 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13199518037363 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13199518037363 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13199518037363 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13199518037363 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13199518037363 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13199518037363 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13199518037363 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13199518037363 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13199518037363 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13199518037363 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.13199518037363 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.13199518037363 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.13199518037363 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.13199518037363 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14650793909637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14650793909637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14650793909637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14650793909637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14650793909637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14650793909637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14650793909637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14650793909637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14650793909637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14650793909637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14650793909637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14650793909637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14650793909637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14650793909637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14650793909637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14650793909637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14650793909637 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1610206978191 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1610206978191 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1610206978191 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1610206978191 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1610206978191 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1610206978191 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1610206978191 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1610206978191 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1610206978191 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1610206978191 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1610206978191 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1610206978191 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1610206978191 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1610206978191 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1610206978191 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1610206978191 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1610206978191 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20608252558087 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20608252558087 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20608252558087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20608252558087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08547427302278 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08547427302278 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08547427302278 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08547427302278 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08547427302278 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08547427302278 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08547427302278 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08547427302278 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08547427302278 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08547427302278 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08547427302278 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08547427302278 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08547427302278 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08547427302278 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.08547427302278 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.08547427302278 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.08547427302278 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14577839930182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14577839930182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14577839930182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14577839930182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14577839930182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14577839930182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14577839930182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14577839930182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14577839930182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14577839930182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14577839930182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14577839930182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14577839930182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14577839930182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14577839930182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14577839930182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14577839930182 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17593046244135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.17593046244135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17593046244135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17593046244135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17593046244135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17593046244135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17593046244135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17593046244135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17593046244135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17593046244135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17593046244135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17593046244135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17593046244135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17593046244135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17593046244135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17593046244135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.17593046244135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19100649401111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.19100649401111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.19100649401111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.19100649401111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.19100649401111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.19100649401111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.19100649401111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19100649401111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.19100649401111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.19100649401111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.19100649401111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.19100649401111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.19100649401111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.19100649401111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.19100649401111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.19100649401111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.19100649401111 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20608252558087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.20608252558087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20608252558087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20608252558087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20608252558087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20608252558087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20608252558087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20608252558087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20608252558087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20608252558087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20608252558087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20608252558087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20608252558087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20608252558087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20608252558087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20608252558087 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20608252558087 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0146381890050304 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0146381890050304 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0146381890050304 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0146381890050304 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0161020079055334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0161020079055334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0161020079055334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0161020079055334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0161020079055334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0161020079055334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0161020079055334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0161020079055334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0161020079055334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0161020079055334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0161020079055334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0161020079055334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0161020079055334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0161020079055334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0161020079055334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0161020079055334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0161020079055334 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0153700984552819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0153700984552819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0153700984552819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0153700984552819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0153700984552819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0153700984552819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0153700984552819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0153700984552819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0153700984552819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0153700984552819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0153700984552819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0153700984552819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0153700984552819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0153700984552819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0153700984552819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0153700984552819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0153700984552819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150041437301561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150041437301561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150041437301561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150041437301561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150041437301561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150041437301561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150041437301561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150041437301561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150041437301561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150041437301561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150041437301561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150041437301561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0150041437301561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0150041437301561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0150041437301561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0150041437301561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0150041437301561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0148211663675933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0148211663675933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0148211663675933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0148211663675933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0148211663675933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0148211663675933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0148211663675933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0148211663675933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0148211663675933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0148211663675933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0148211663675933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0148211663675933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0148211663675933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0148211663675933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0148211663675933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0148211663675933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0148211663675933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0146381890050304 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0146381890050304 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0146381890050304 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0146381890050304 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0146381890050304 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0146381890050304 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0146381890050304 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0146381890050304 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0146381890050304 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0146381890050304 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0146381890050304 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0146381890050304 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0146381890050304 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0146381890050304 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0146381890050304 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0146381890050304 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0146381890050304 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103514877846206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103514877846206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103514877846206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103514877846206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.113866365630826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.113866365630826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.113866365630826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.113866365630826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.113866365630826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.113866365630826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.113866365630826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.113866365630826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.113866365630826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.113866365630826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.113866365630826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.113866365630826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.113866365630826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.113866365630826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.113866365630826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.113866365630826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.113866365630826 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.108690621738516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.108690621738516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.108690621738516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.108690621738516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.108690621738516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.108690621738516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.108690621738516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.108690621738516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.108690621738516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.108690621738516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.108690621738516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.108690621738516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.108690621738516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.108690621738516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.108690621738516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.108690621738516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.108690621738516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106102749792361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106102749792361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106102749792361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106102749792361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106102749792361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106102749792361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106102749792361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106102749792361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106102749792361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106102749792361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.106102749792361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.106102749792361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.106102749792361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.106102749792361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.106102749792361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.106102749792361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.106102749792361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.104808813819283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.104808813819283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.104808813819283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.104808813819283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.104808813819283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.104808813819283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.104808813819283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.104808813819283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.104808813819283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.104808813819283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.104808813819283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.104808813819283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.104808813819283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.104808813819283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.104808813819283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.104808813819283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.104808813819283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103514877846206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.103514877846206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.103514877846206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103514877846206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103514877846206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103514877846206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103514877846206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103514877846206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103514877846206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103514877846206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103514877846206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103514877846206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103514877846206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103514877846206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103514877846206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103514877846206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103514877846206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45912512349991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45912512349991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45912512349991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45912512349991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.413212611149919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.413212611149919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.413212611149919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.413212611149919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.413212611149919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.413212611149919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.413212611149919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.413212611149919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.413212611149919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.413212611149919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.413212611149919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.413212611149919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.413212611149919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.413212611149919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.413212611149919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.413212611149919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.413212611149919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436168867324914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436168867324914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436168867324914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436168867324914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436168867324914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436168867324914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436168867324914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436168867324914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436168867324914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436168867324914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436168867324914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.436168867324914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.436168867324914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.436168867324914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.436168867324914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.436168867324914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.436168867324914 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.447646995412412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.447646995412412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.447646995412412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.447646995412412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.447646995412412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.447646995412412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.447646995412412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.447646995412412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.447646995412412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.447646995412412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.447646995412412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.447646995412412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.447646995412412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.447646995412412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.447646995412412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.447646995412412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.447646995412412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.453386059456161 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.453386059456161 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.453386059456161 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.453386059456161 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.453386059456161 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.453386059456161 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.453386059456161 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.453386059456161 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.453386059456161 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.453386059456161 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.453386059456161 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.453386059456161 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.453386059456161 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.453386059456161 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.453386059456161 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.453386059456161 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.453386059456161 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45912512349991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.45912512349991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.45912512349991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45912512349991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45912512349991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45912512349991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45912512349991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45912512349991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45912512349991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45912512349991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45912512349991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45912512349991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45912512349991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45912512349991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45912512349991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45912512349991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45912512349991 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.9233036953781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.9233036953781 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.9233036953781 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.9233036953781 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.3156340649159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.119468880147 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.02138628776255 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.97234499157032 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.9233036953781 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.9233036953781 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.693626294539767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.693626294539767 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.693626294539767 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.693626294539767 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.762988923993744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.762988923993744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.762988923993744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.762988923993744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.762988923993744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.762988923993744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.762988923993744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.762988923993744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.762988923993744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.762988923993744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.762988923993744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.762988923993744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.762988923993744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.762988923993744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.762988923993744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.762988923993744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.762988923993744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.728307609266756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.728307609266756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.728307609266756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.728307609266756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.728307609266756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.728307609266756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.728307609266756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.728307609266756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.728307609266756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.728307609266756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.728307609266756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.728307609266756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.728307609266756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.728307609266756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.728307609266756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.728307609266756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.728307609266756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.710966951903262 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.710966951903262 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.710966951903262 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.710966951903262 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.710966951903262 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.710966951903262 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.710966951903262 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.710966951903262 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.710966951903262 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.710966951903262 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.710966951903262 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.710966951903262 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.710966951903262 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.710966951903262 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.710966951903262 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.710966951903262 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.710966951903262 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.702296623221514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.702296623221514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.702296623221514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.702296623221514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.702296623221514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.702296623221514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.702296623221514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.702296623221514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.702296623221514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.702296623221514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.702296623221514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.702296623221514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.702296623221514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.702296623221514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.702296623221514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.702296623221514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.702296623221514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.693626294539767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.693626294539767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.693626294539767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.693626294539767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.693626294539767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.693626294539767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.693626294539767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.693626294539767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.693626294539767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.693626294539767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.693626294539767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.693626294539767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.693626294539767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.693626294539767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.693626294539767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.693626294539767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.693626294539767 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.29186327040583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.29186327040583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.29186327040583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.29186327040583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42104959744642 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.42104959744642 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.42104959744642 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42104959744642 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42104959744642 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42104959744642 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42104959744642 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42104959744642 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42104959744642 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42104959744642 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42104959744642 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42104959744642 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42104959744642 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42104959744642 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42104959744642 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42104959744642 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42104959744642 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35645643392613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.35645643392613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.35645643392613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.35645643392613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.35645643392613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35645643392613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35645643392613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35645643392613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.35645643392613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.35645643392613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.35645643392613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.35645643392613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.35645643392613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.35645643392613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.35645643392613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.35645643392613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.35645643392613 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32415985216598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32415985216598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32415985216598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32415985216598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32415985216598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32415985216598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32415985216598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32415985216598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32415985216598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32415985216598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32415985216598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32415985216598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32415985216598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32415985216598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32415985216598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32415985216598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32415985216598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.30801156128591 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.30801156128591 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.30801156128591 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.30801156128591 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.30801156128591 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.30801156128591 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.30801156128591 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.30801156128591 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.30801156128591 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.30801156128591 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.30801156128591 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.30801156128591 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.30801156128591 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.30801156128591 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.30801156128591 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.30801156128591 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.30801156128591 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.29186327040583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.29186327040583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.29186327040583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.29186327040583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.29186327040583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.29186327040583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.29186327040583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.29186327040583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.29186327040583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.29186327040583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.29186327040583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.29186327040583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.29186327040583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.29186327040583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.29186327040583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.29186327040583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.29186327040583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.793808451015238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.793808451015238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.793808451015238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.793808451015238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.873189296116762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.873189296116762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.873189296116762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.873189296116762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.873189296116762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.873189296116762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.873189296116762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.873189296116762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.873189296116762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.873189296116762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.873189296116762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.873189296116762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.873189296116762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.873189296116762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.873189296116762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.873189296116762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.873189296116762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.833498873566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.833498873566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.833498873566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.833498873566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.833498873566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.833498873566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.833498873566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.833498873566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.833498873566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.833498873566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.833498873566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.833498873566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.833498873566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.833498873566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.833498873566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.833498873566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.833498873566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.813653662290619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.813653662290619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.813653662290619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.813653662290619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.813653662290619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.813653662290619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.813653662290619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.813653662290619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.813653662290619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.813653662290619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.813653662290619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.813653662290619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.813653662290619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.813653662290619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.813653662290619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.813653662290619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.813653662290619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803731056652928 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.803731056652928 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.803731056652928 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.803731056652928 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.803731056652928 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803731056652928 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.803731056652928 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.803731056652928 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.803731056652928 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.803731056652928 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.803731056652928 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.803731056652928 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.803731056652928 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.803731056652928 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.803731056652928 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.803731056652928 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.803731056652928 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.793808451015238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.793808451015238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.793808451015238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.793808451015238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.793808451015238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.793808451015238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.793808451015238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.793808451015238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.793808451015238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.793808451015238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.793808451015238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.793808451015238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.793808451015238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.793808451015238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.793808451015238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.793808451015238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.793808451015238 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.08075606987531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.08075606987531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.08075606987531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.08075606987531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.972680462887781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.972680462887781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.972680462887781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.972680462887781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.972680462887781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.972680462887781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.972680462887781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.972680462887781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.972680462887781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.972680462887781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.972680462887781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.972680462887781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.972680462887781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.972680462887781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.972680462887781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.972680462887781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.972680462887781 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02671826638155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02671826638155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02671826638155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02671826638155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02671826638155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02671826638155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02671826638155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02671826638155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02671826638155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02671826638155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02671826638155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02671826638155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02671826638155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.02671826638155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.02671826638155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.02671826638155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.02671826638155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05373716812843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05373716812843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05373716812843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05373716812843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05373716812843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05373716812843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05373716812843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05373716812843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05373716812843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05373716812843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05373716812843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.05373716812843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.05373716812843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.05373716812843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.05373716812843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.05373716812843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.05373716812843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.06724661900187 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.06724661900187 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.06724661900187 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.06724661900187 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.06724661900187 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.06724661900187 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.06724661900187 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.06724661900187 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.06724661900187 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.06724661900187 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.06724661900187 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.06724661900187 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.06724661900187 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.06724661900187 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.06724661900187 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.06724661900187 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.06724661900187 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08075606987531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08075606987531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08075606987531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08075606987531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08075606987531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08075606987531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08075606987531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08075606987531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08075606987531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08075606987531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08075606987531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08075606987531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08075606987531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08075606987531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.08075606987531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.08075606987531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.08075606987531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.698568677398824 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.698568677398824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.698568677398824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.698568677398824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.628711809658941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.628711809658941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.628711809658941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.628711809658941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.628711809658941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.628711809658941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.628711809658941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.628711809658941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.628711809658941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.628711809658941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.628711809658941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.628711809658941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.628711809658941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.628711809658941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.628711809658941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.628711809658941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.628711809658941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.663640243528883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.663640243528883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.663640243528883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.663640243528883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.663640243528883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.663640243528883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.663640243528883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.663640243528883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.663640243528883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.663640243528883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.663640243528883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.663640243528883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.663640243528883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.663640243528883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.663640243528883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.663640243528883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.663640243528883 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.681104460463853 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.681104460463853 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.681104460463853 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.681104460463853 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.681104460463853 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.681104460463853 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.681104460463853 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.681104460463853 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.681104460463853 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.681104460463853 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.681104460463853 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.681104460463853 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.681104460463853 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.681104460463853 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.681104460463853 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.681104460463853 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.681104460463853 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.689836568931338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.689836568931338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.689836568931338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.689836568931338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.689836568931338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.689836568931338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.689836568931338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.689836568931338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.689836568931338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.689836568931338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.689836568931338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.689836568931338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.689836568931338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.689836568931338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.689836568931338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.689836568931338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.689836568931338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.698568677398824 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.698568677398824 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.698568677398824 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.698568677398824 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.698568677398824 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.698568677398824 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.698568677398824 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.698568677398824 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.698568677398824 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.698568677398824 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.698568677398824 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.698568677398824 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.698568677398824 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.698568677398824 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.698568677398824 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.698568677398824 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.698568677398824 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.922434797031206 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.922434797031206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.922434797031206 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.922434797031206 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.830191317328086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.830191317328086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.830191317328086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.830191317328086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.830191317328086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.830191317328086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.830191317328086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.830191317328086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.830191317328086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.830191317328086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.830191317328086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.830191317328086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.830191317328086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.830191317328086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.830191317328086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.830191317328086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.830191317328086 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.876313057179646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.876313057179646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.876313057179646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.876313057179646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.876313057179646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.876313057179646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.876313057179646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.876313057179646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.876313057179646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.876313057179646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.876313057179646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.876313057179646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.876313057179646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.876313057179646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.876313057179646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.876313057179646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.876313057179646 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.899373927105426 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.899373927105426 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.899373927105426 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.899373927105426 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.899373927105426 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.899373927105426 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.899373927105426 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.899373927105426 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.899373927105426 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.899373927105426 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.899373927105426 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.899373927105426 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.899373927105426 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.899373927105426 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.899373927105426 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.899373927105426 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.899373927105426 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.910904362068316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.910904362068316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.910904362068316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.910904362068316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.910904362068316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.910904362068316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.910904362068316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.910904362068316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.910904362068316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.910904362068316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.910904362068316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.910904362068316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.910904362068316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.910904362068316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.910904362068316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.910904362068316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.910904362068316 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.922434797031206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.922434797031206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.922434797031206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.922434797031206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.922434797031206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.922434797031206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.922434797031206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.922434797031206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.922434797031206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.922434797031206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.922434797031206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.922434797031206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.922434797031206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.922434797031206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.922434797031206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.922434797031206 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.922434797031206 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38530747604843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38530747604843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38530747604843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38530747604843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24677672844359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.24677672844359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.24677672844359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.24677672844359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.24677672844359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.24677672844359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.24677672844359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.24677672844359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24677672844359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.24677672844359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.24677672844359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.24677672844359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.24677672844359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.24677672844359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.24677672844359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.24677672844359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.24677672844359 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31604210224601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.31604210224601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.31604210224601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.31604210224601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.31604210224601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.31604210224601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.31604210224601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.31604210224601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31604210224601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.31604210224601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.31604210224601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.31604210224601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.31604210224601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.31604210224601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.31604210224601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.31604210224601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.31604210224601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35067478914722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35067478914722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35067478914722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35067478914722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35067478914722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35067478914722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35067478914722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35067478914722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35067478914722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35067478914722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35067478914722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35067478914722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35067478914722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35067478914722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35067478914722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35067478914722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35067478914722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36799113259783 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36799113259783 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.36799113259783 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.36799113259783 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36799113259783 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36799113259783 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36799113259783 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36799113259783 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36799113259783 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36799113259783 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36799113259783 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36799113259783 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.36799113259783 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.36799113259783 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.36799113259783 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.36799113259783 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.36799113259783 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38530747604843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38530747604843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38530747604843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38530747604843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38530747604843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38530747604843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38530747604843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38530747604843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38530747604843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38530747604843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38530747604843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38530747604843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38530747604843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38530747604843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38530747604843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38530747604843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38530747604843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44460576624672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44460576624672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44460576624672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44460576624672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30014518962205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.30014518962205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.30014518962205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.30014518962205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.30014518962205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.30014518962205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.30014518962205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.30014518962205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30014518962205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.30014518962205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.30014518962205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.30014518962205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.30014518962205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.30014518962205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.30014518962205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.30014518962205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.30014518962205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.37237547793439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.37237547793439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.37237547793439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.37237547793439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.37237547793439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.37237547793439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.37237547793439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.37237547793439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.37237547793439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.37237547793439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.37237547793439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.37237547793439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.37237547793439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.37237547793439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.37237547793439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.37237547793439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.37237547793439 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40849062209055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.40849062209055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.40849062209055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40849062209055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40849062209055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40849062209055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40849062209055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40849062209055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40849062209055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40849062209055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40849062209055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40849062209055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40849062209055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40849062209055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40849062209055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40849062209055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40849062209055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42654819416864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.42654819416864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.42654819416864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.42654819416864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.42654819416864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.42654819416864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.42654819416864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.42654819416864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42654819416864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.42654819416864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.42654819416864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.42654819416864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.42654819416864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.42654819416864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.42654819416864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.42654819416864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.42654819416864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44460576624672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44460576624672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44460576624672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44460576624672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44460576624672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44460576624672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44460576624672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44460576624672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44460576624672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44460576624672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44460576624672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44460576624672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44460576624672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44460576624672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44460576624672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44460576624672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44460576624672 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.194371816844964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.194371816844964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.194371816844964 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.194371816844964 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.174934635160468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.184653226002716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.18951252142384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191942169134402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.194371816844964 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.194371816844964 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0443880016024405 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0443880016024405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0443880016024405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0443880016024405 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0488268017626845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0488268017626845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0488268017626845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0488268017626845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0488268017626845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0488268017626845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0488268017626845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0488268017626845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0488268017626845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0488268017626845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0488268017626845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0488268017626845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0488268017626845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0488268017626845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0488268017626845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0488268017626845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0488268017626845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0466074016825625 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0466074016825625 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0466074016825625 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0466074016825625 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0466074016825625 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0466074016825625 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0466074016825625 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0466074016825625 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0466074016825625 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0466074016825625 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0466074016825625 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0466074016825625 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0466074016825625 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0466074016825625 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0466074016825625 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0466074016825625 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0466074016825625 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0454977016425015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0454977016425015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0454977016425015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0454977016425015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0454977016425015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0454977016425015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0454977016425015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0454977016425015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0454977016425015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0454977016425015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0454977016425015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0454977016425015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0454977016425015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0454977016425015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0454977016425015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0454977016425015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0454977016425015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.044942851622471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.044942851622471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.044942851622471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.044942851622471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.044942851622471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.044942851622471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.044942851622471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.044942851622471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.044942851622471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.044942851622471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.044942851622471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.044942851622471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.044942851622471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.044942851622471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.044942851622471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.044942851622471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.044942851622471 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0443880016024405 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0443880016024405 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0443880016024405 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0443880016024405 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0443880016024405 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0443880016024405 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0443880016024405 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0443880016024405 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0443880016024405 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0443880016024405 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0443880016024405 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0443880016024405 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0443880016024405 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0443880016024405 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0443880016024405 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0443880016024405 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0443880016024405 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0664797651923772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0664797651923772 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0664797651923772 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0664797651923772 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0598317886731395 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0598317886731395 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0598317886731395 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0598317886731395 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0598317886731395 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0598317886731395 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0598317886731395 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0598317886731395 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0598317886731395 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0598317886731395 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0598317886731395 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0598317886731395 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0598317886731395 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0598317886731395 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0598317886731395 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0598317886731395 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0598317886731395 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0631557769327583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0631557769327583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0631557769327583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0631557769327583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0631557769327583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0631557769327583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0631557769327583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0631557769327583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0631557769327583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0631557769327583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0631557769327583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0631557769327583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0631557769327583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0631557769327583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0631557769327583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0631557769327583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0631557769327583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0648177710625678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0648177710625678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0648177710625678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0648177710625678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0648177710625678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0648177710625678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0648177710625678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0648177710625678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0648177710625678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0648177710625678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0648177710625678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0648177710625678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0648177710625678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0648177710625678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0648177710625678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0648177710625678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0648177710625678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0656487681274725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0656487681274725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0656487681274725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0656487681274725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0656487681274725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0656487681274725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0656487681274725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0656487681274725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0656487681274725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0656487681274725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0656487681274725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0656487681274725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0656487681274725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0656487681274725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0656487681274725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0656487681274725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0656487681274725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664797651923772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0664797651923772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0664797651923772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0664797651923772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0664797651923772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0664797651923772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0664797651923772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0664797651923772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0664797651923772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0664797651923772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0664797651923772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0664797651923772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0664797651923772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0664797651923772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0664797651923772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0664797651923772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0664797651923772 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00764044107179784 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00764044107179784 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00764044107179784 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00764044107179784 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00840448517897763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00840448517897763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00840448517897763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00840448517897763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00840448517897763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00840448517897763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00840448517897763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00840448517897763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00840448517897763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00840448517897763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00840448517897763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00840448517897763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00840448517897763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00840448517897763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00840448517897763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00840448517897763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00840448517897763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00802246312538774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00802246312538774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00802246312538774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00802246312538774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00802246312538774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00802246312538774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00802246312538774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00802246312538774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00802246312538774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00802246312538774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00802246312538774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00802246312538774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00802246312538774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00802246312538774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00802246312538774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00802246312538774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00802246312538774 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00783145209859279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00783145209859279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00783145209859279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00783145209859279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00783145209859279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00783145209859279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00783145209859279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00783145209859279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00783145209859279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00783145209859279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00783145209859279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00783145209859279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00783145209859279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00783145209859279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00783145209859279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00783145209859279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00783145209859279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00773594658519532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00773594658519532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00773594658519532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00773594658519532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00773594658519532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00773594658519532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00773594658519532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00773594658519532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00773594658519532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00773594658519532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00773594658519532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00773594658519532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00773594658519532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00773594658519532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00773594658519532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00773594658519532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00773594658519532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00764044107179784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00764044107179784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00764044107179784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00764044107179784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00764044107179784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00764044107179784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00764044107179784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00764044107179784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00764044107179784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00764044107179784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00764044107179784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00764044107179784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00764044107179784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00764044107179784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00764044107179784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00764044107179784 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00764044107179784 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.964748773736582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.964748773736582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.964748773736582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.964748773736582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.868273896362924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.868273896362924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.868273896362924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.868273896362924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.868273896362924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.868273896362924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.868273896362924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.868273896362924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.868273896362924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.868273896362924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.868273896362924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.868273896362924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.868273896362924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.868273896362924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.868273896362924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.868273896362924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.868273896362924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.916511335049753 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.916511335049753 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.916511335049753 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.916511335049753 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.916511335049753 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.916511335049753 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.916511335049753 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.916511335049753 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.916511335049753 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.916511335049753 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.916511335049753 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.916511335049753 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.916511335049753 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.916511335049753 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.916511335049753 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.916511335049753 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.916511335049753 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.940630054393167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.940630054393167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.940630054393167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.940630054393167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.940630054393167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.940630054393167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.940630054393167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.940630054393167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.940630054393167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.940630054393167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.940630054393167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.940630054393167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.940630054393167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.940630054393167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.940630054393167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.940630054393167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.940630054393167 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.952689414064875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.952689414064875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.952689414064875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.952689414064875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.952689414064875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.952689414064875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.952689414064875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.952689414064875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.952689414064875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.952689414064875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.952689414064875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.952689414064875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.952689414064875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.952689414064875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.952689414064875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.952689414064875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.952689414064875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.964748773736582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.964748773736582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.964748773736582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.964748773736582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.964748773736582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.964748773736582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.964748773736582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.964748773736582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.964748773736582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.964748773736582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.964748773736582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.964748773736582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.964748773736582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.964748773736582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.964748773736582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.964748773736582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.964748773736582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.42324794138028 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.42324794138028 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.42324794138028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.42324794138028 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28092314724225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.28092314724225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.28092314724225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28092314724225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28092314724225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28092314724225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28092314724225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28092314724225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28092314724225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28092314724225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28092314724225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28092314724225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28092314724225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28092314724225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28092314724225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28092314724225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28092314724225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35208554431127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35208554431127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35208554431127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35208554431127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35208554431127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35208554431127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35208554431127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35208554431127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35208554431127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35208554431127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35208554431127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35208554431127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35208554431127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35208554431127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35208554431127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35208554431127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35208554431127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38766674284577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38766674284577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38766674284577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38766674284577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38766674284577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38766674284577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38766674284577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38766674284577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38766674284577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38766674284577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38766674284577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38766674284577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38766674284577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38766674284577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38766674284577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38766674284577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38766674284577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40545734211303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.40545734211303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.40545734211303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40545734211303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40545734211303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40545734211303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40545734211303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40545734211303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40545734211303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40545734211303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40545734211303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40545734211303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40545734211303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40545734211303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40545734211303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40545734211303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40545734211303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42324794138028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.42324794138028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.42324794138028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.42324794138028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.42324794138028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.42324794138028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.42324794138028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.42324794138028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42324794138028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.42324794138028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.42324794138028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.42324794138028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.42324794138028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.42324794138028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.42324794138028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.42324794138028 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.42324794138028 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.558440187679322 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.558440187679322 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.558440187679322 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.558440187679322 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.50259616891139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.50259616891139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.50259616891139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.50259616891139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.50259616891139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.50259616891139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.50259616891139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.50259616891139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.50259616891139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.50259616891139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.50259616891139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.50259616891139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.50259616891139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.50259616891139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.50259616891139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.50259616891139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.50259616891139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.530518178295356 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.530518178295356 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.530518178295356 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.530518178295356 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.530518178295356 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.530518178295356 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.530518178295356 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.530518178295356 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.530518178295356 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.530518178295356 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.530518178295356 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.530518178295356 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.530518178295356 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.530518178295356 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.530518178295356 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.530518178295356 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.530518178295356 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.544479182987339 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.544479182987339 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.544479182987339 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.544479182987339 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.544479182987339 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.544479182987339 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.544479182987339 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.544479182987339 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.544479182987339 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.544479182987339 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.544479182987339 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.544479182987339 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.544479182987339 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.544479182987339 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.544479182987339 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.544479182987339 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.544479182987339 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.551459685333331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.551459685333331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.551459685333331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.551459685333331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.551459685333331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.551459685333331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.551459685333331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.551459685333331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.551459685333331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.551459685333331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.551459685333331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.551459685333331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.551459685333331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.551459685333331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.551459685333331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.551459685333331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.551459685333331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558440187679322 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.558440187679322 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.558440187679322 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.558440187679322 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.558440187679322 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.558440187679322 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.558440187679322 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.558440187679322 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558440187679322 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.558440187679322 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.558440187679322 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.558440187679322 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.558440187679322 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.558440187679322 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.558440187679322 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.558440187679322 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.558440187679322 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.23772650557361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.23772650557361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.23772650557361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.23772650557361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.213953855016249 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.22584018029493 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.23178334293427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.23475492425394 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.23772650557361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.23772650557361 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.757240042082093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.757240042082093 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.757240042082093 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.757240042082093 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.832964046290302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.832964046290302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.832964046290302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.832964046290302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.832964046290302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.832964046290302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.832964046290302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.832964046290302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.832964046290302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.832964046290302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.832964046290302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.832964046290302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.832964046290302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.832964046290302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.832964046290302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.832964046290302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.832964046290302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.795102044186197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.795102044186197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.795102044186197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.795102044186197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.795102044186197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.795102044186197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.795102044186197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.795102044186197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.795102044186197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.795102044186197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.795102044186197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.795102044186197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.795102044186197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.795102044186197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.795102044186197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.795102044186197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.795102044186197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.776171043134145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.776171043134145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.776171043134145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.776171043134145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.776171043134145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.776171043134145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.776171043134145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.776171043134145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.776171043134145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.776171043134145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.776171043134145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.776171043134145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.776171043134145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.776171043134145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.776171043134145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.776171043134145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.776171043134145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.766705542608119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.766705542608119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.766705542608119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.766705542608119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.766705542608119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.766705542608119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.766705542608119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.766705542608119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.766705542608119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.766705542608119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.766705542608119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.766705542608119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.766705542608119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.766705542608119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.766705542608119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.766705542608119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.766705542608119 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.757240042082093 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.757240042082093 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.757240042082093 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.757240042082093 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.757240042082093 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.757240042082093 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.757240042082093 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.757240042082093 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.757240042082093 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.757240042082093 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.757240042082093 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.757240042082093 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.757240042082093 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.757240042082093 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.757240042082093 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.757240042082093 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.757240042082093 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.839954090243139 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.839954090243139 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.839954090243139 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.839954090243139 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.923949499267453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.923949499267453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.923949499267453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.923949499267453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.923949499267453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.923949499267453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.923949499267453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.923949499267453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.923949499267453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.923949499267453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.923949499267453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.923949499267453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.923949499267453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.923949499267453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.923949499267453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.923949499267453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.923949499267453 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.881951794755296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.881951794755296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.881951794755296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.881951794755296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.881951794755296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.881951794755296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.881951794755296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.881951794755296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.881951794755296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.881951794755296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.881951794755296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.881951794755296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.881951794755296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.881951794755296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.881951794755296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.881951794755296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.881951794755296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.860952942499217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.860952942499217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.860952942499217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.860952942499217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.860952942499217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.860952942499217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.860952942499217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.860952942499217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.860952942499217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.860952942499217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.860952942499217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.860952942499217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.860952942499217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.860952942499217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.860952942499217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.860952942499217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.860952942499217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.850453516371178 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.850453516371178 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.850453516371178 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.850453516371178 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.850453516371178 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.850453516371178 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.850453516371178 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.850453516371178 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.850453516371178 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.850453516371178 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.850453516371178 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.850453516371178 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.850453516371178 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.850453516371178 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.850453516371178 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.850453516371178 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.850453516371178 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.839954090243139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.839954090243139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.839954090243139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.839954090243139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.839954090243139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.839954090243139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.839954090243139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.839954090243139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.839954090243139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.839954090243139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.839954090243139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.839954090243139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.839954090243139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.839954090243139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.839954090243139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.839954090243139 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.839954090243139 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.321868692695892 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.321868692695892 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.321868692695892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.321868692695892 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289681823426303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.289681823426303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.289681823426303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.289681823426303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.289681823426303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.289681823426303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.289681823426303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.289681823426303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289681823426303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.289681823426303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.289681823426303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.289681823426303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.289681823426303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.289681823426303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.289681823426303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.289681823426303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.289681823426303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.305775258061098 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.305775258061098 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.305775258061098 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.305775258061098 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.305775258061098 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.305775258061098 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.305775258061098 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.305775258061098 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.305775258061098 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.305775258061098 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.305775258061098 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.305775258061098 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.305775258061098 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.305775258061098 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.305775258061098 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.305775258061098 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.305775258061098 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.313821975378495 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.313821975378495 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.313821975378495 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.313821975378495 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.313821975378495 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.313821975378495 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.313821975378495 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.313821975378495 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.313821975378495 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.313821975378495 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.313821975378495 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.313821975378495 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.313821975378495 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.313821975378495 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.313821975378495 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.313821975378495 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.313821975378495 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317845334037194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.317845334037194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.317845334037194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.317845334037194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.317845334037194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.317845334037194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.317845334037194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.317845334037194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.317845334037194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.317845334037194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.317845334037194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.317845334037194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.317845334037194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.317845334037194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.317845334037194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.317845334037194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.317845334037194 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321868692695892 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.321868692695892 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.321868692695892 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.321868692695892 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.321868692695892 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321868692695892 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321868692695892 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321868692695892 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321868692695892 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321868692695892 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321868692695892 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321868692695892 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321868692695892 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.321868692695892 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.321868692695892 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.321868692695892 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.321868692695892 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0663024174407565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0663024174407565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0663024174407565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0663024174407565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729326591848321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0729326591848321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0729326591848321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0729326591848321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0729326591848321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0729326591848321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0729326591848321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0729326591848321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0729326591848321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0729326591848321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0729326591848321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0729326591848321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0729326591848321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0729326591848321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0729326591848321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0729326591848321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0729326591848321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0696175383127943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0696175383127943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0696175383127943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0696175383127943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0696175383127943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0696175383127943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0696175383127943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0696175383127943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0696175383127943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0696175383127943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0696175383127943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0696175383127943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0696175383127943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0696175383127943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0696175383127943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0696175383127943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0696175383127943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0679599778767754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0679599778767754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0679599778767754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0679599778767754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0679599778767754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0679599778767754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0679599778767754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0679599778767754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0679599778767754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0679599778767754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0679599778767754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0679599778767754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0679599778767754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0679599778767754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0679599778767754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0679599778767754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0679599778767754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0671311976587659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0671311976587659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0671311976587659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0671311976587659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0671311976587659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0671311976587659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0671311976587659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0671311976587659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0671311976587659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0671311976587659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0671311976587659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0671311976587659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0671311976587659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0671311976587659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0671311976587659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0671311976587659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0671311976587659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0663024174407565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0663024174407565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0663024174407565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0663024174407565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0663024174407565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0663024174407565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0663024174407565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0663024174407565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0663024174407565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0663024174407565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0663024174407565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0663024174407565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0663024174407565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0663024174407565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0663024174407565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0663024174407565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0663024174407565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.190345286288976 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.190345286288976 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.190345286288976 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.190345286288976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.171310757660079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.171310757660079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.171310757660079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.171310757660079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.171310757660079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.171310757660079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.171310757660079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.171310757660079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.171310757660079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.171310757660079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.171310757660079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.171310757660079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.171310757660079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.171310757660079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.171310757660079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.171310757660079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.171310757660079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180828021974527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.180828021974527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.180828021974527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.180828021974527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.180828021974527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.180828021974527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.180828021974527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.180828021974527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180828021974527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.180828021974527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.180828021974527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.180828021974527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.180828021974527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.180828021974527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.180828021974527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.180828021974527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.180828021974527 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.185586654131752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.185586654131752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.185586654131752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.185586654131752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.185586654131752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.185586654131752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.185586654131752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.185586654131752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.185586654131752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.185586654131752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.185586654131752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.185586654131752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.185586654131752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.185586654131752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.185586654131752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.185586654131752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.185586654131752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.187965970210364 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.187965970210364 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.187965970210364 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.187965970210364 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.187965970210364 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.187965970210364 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.187965970210364 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.187965970210364 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.187965970210364 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.187965970210364 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.187965970210364 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.187965970210364 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.187965970210364 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.187965970210364 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.187965970210364 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.187965970210364 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.187965970210364 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190345286288976 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.190345286288976 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.190345286288976 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.190345286288976 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.190345286288976 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.190345286288976 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.190345286288976 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.190345286288976 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190345286288976 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.190345286288976 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.190345286288976 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.190345286288976 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.190345286288976 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.190345286288976 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.190345286288976 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.190345286288976 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.190345286288976 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0722060275548517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0722060275548517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0722060275548517 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0722060275548517 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0794266303103369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0794266303103369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0794266303103369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0794266303103369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0794266303103369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0794266303103369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0794266303103369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0794266303103369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0794266303103369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0794266303103369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0794266303103369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0794266303103369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0794266303103369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0794266303103369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0794266303103369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0794266303103369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0794266303103369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0758163289325943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0758163289325943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0758163289325943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0758163289325943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0758163289325943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0758163289325943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0758163289325943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0758163289325943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0758163289325943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0758163289325943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0758163289325943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0758163289325943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0758163289325943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0758163289325943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0758163289325943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0758163289325943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0758163289325943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.074011178243723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.074011178243723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.074011178243723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.074011178243723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.074011178243723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.074011178243723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.074011178243723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.074011178243723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.074011178243723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.074011178243723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.074011178243723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.074011178243723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.074011178243723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.074011178243723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.074011178243723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.074011178243723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.074011178243723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0731086028992874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0731086028992874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0731086028992874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0731086028992874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0731086028992874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0731086028992874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0731086028992874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0731086028992874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0731086028992874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0731086028992874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0731086028992874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0731086028992874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0731086028992874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0731086028992874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0731086028992874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0731086028992874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0731086028992874 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0722060275548517 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0722060275548517 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0722060275548517 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0722060275548517 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0722060275548517 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0722060275548517 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0722060275548517 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0722060275548517 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0722060275548517 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0722060275548517 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0722060275548517 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0722060275548517 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0722060275548517 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0722060275548517 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0722060275548517 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0722060275548517 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0722060275548517 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.306970505008526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.306970505008526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.306970505008526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.306970505008526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276273454507674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.276273454507674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.276273454507674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.276273454507674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.276273454507674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.276273454507674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.276273454507674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276273454507674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276273454507674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.276273454507674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.276273454507674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.276273454507674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.276273454507674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.276273454507674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.276273454507674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.276273454507674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.276273454507674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.2916219797581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.2916219797581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.2916219797581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.2916219797581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.2916219797581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.2916219797581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.2916219797581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.2916219797581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.2916219797581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.2916219797581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.2916219797581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.2916219797581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.2916219797581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.2916219797581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.2916219797581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.2916219797581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.2916219797581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299296242383313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.299296242383313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.299296242383313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.299296242383313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.299296242383313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.299296242383313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.299296242383313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.299296242383313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299296242383313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.299296242383313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.299296242383313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.299296242383313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.299296242383313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.299296242383313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.299296242383313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.299296242383313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.299296242383313 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.30313337369592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.30313337369592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.30313337369592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.30313337369592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.30313337369592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.30313337369592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.30313337369592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.30313337369592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.30313337369592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.30313337369592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.30313337369592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.30313337369592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.30313337369592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.30313337369592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.30313337369592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.30313337369592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.30313337369592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306970505008526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.306970505008526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.306970505008526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.306970505008526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.306970505008526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.306970505008526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.306970505008526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.306970505008526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.306970505008526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.306970505008526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.306970505008526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.306970505008526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.306970505008526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.306970505008526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.306970505008526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.306970505008526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.306970505008526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103853049938169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103853049938169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103853049938169 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103853049938169 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.114238354931986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.114238354931986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.114238354931986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.114238354931986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.114238354931986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.114238354931986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.114238354931986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.114238354931986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.114238354931986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.114238354931986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.114238354931986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.114238354931986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.114238354931986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.114238354931986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.114238354931986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.114238354931986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.114238354931986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.109045702435078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.109045702435078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.109045702435078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.109045702435078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.109045702435078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.109045702435078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.109045702435078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.109045702435078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.109045702435078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.109045702435078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.109045702435078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.109045702435078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.109045702435078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.109045702435078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.109045702435078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.109045702435078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.109045702435078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106449376186623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106449376186623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106449376186623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106449376186623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106449376186623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106449376186623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106449376186623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106449376186623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106449376186623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106449376186623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106449376186623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106449376186623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.106449376186623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.106449376186623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.106449376186623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.106449376186623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.106449376186623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.105151213062396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.105151213062396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.105151213062396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.105151213062396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.105151213062396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.105151213062396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.105151213062396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.105151213062396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.105151213062396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.105151213062396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.105151213062396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.105151213062396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.105151213062396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.105151213062396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.105151213062396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.105151213062396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.105151213062396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103853049938169 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.103853049938169 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.103853049938169 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.103853049938169 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.103853049938169 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103853049938169 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103853049938169 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103853049938169 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103853049938169 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103853049938169 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103853049938169 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103853049938169 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103853049938169 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103853049938169 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103853049938169 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103853049938169 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103853049938169 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.24144898345239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.24144898345239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.24144898345239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.24144898345239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.91730408510715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.91730408510715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.91730408510715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.91730408510715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.91730408510715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.91730408510715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.91730408510715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.91730408510715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.91730408510715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.91730408510715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.91730408510715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.91730408510715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.91730408510715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.91730408510715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.91730408510715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.91730408510715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.91730408510715 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.07937653427977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.07937653427977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.07937653427977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.07937653427977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.07937653427977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.07937653427977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.07937653427977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.07937653427977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.07937653427977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.07937653427977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.07937653427977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.07937653427977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.07937653427977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.07937653427977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.07937653427977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.07937653427977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.07937653427977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.16041275886608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.16041275886608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.16041275886608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.16041275886608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16041275886608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.16041275886608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.16041275886608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16041275886608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16041275886608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16041275886608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.16041275886608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.16041275886608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.16041275886608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.16041275886608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.16041275886608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.16041275886608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.16041275886608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.20093087115924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.20093087115924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.20093087115924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.20093087115924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.20093087115924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.20093087115924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.20093087115924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.20093087115924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.20093087115924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.20093087115924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.20093087115924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.20093087115924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.20093087115924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.20093087115924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.20093087115924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.20093087115924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.20093087115924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24144898345239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.24144898345239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.24144898345239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.24144898345239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.24144898345239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.24144898345239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.24144898345239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24144898345239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24144898345239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24144898345239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.24144898345239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24144898345239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.24144898345239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.24144898345239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.24144898345239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.24144898345239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.24144898345239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.95768714698788 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.95768714698788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.95768714698788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.95768714698788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.66191843228909 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.66191843228909 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.66191843228909 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.66191843228909 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.66191843228909 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.66191843228909 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.66191843228909 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.66191843228909 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.66191843228909 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.66191843228909 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.66191843228909 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.66191843228909 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.66191843228909 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.66191843228909 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.66191843228909 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.66191843228909 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.66191843228909 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.80980278963849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.80980278963849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.80980278963849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.80980278963849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.80980278963849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.80980278963849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.80980278963849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.80980278963849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.80980278963849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.80980278963849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.80980278963849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.80980278963849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.80980278963849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.80980278963849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.80980278963849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.80980278963849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.80980278963849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88374496831318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.88374496831318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.88374496831318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.88374496831318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.88374496831318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.88374496831318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.88374496831318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.88374496831318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.88374496831318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.88374496831318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.88374496831318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.88374496831318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.88374496831318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.88374496831318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.88374496831318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.88374496831318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.88374496831318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.92071605765053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.92071605765053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.92071605765053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.92071605765053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.92071605765053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.92071605765053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.92071605765053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.92071605765053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.92071605765053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.92071605765053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.92071605765053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.92071605765053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.92071605765053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.92071605765053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.92071605765053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.92071605765053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.92071605765053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95768714698788 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.95768714698788 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.95768714698788 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.95768714698788 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.95768714698788 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.95768714698788 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.95768714698788 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.95768714698788 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.95768714698788 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.95768714698788 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.95768714698788 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95768714698788 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.95768714698788 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.95768714698788 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.95768714698788 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.95768714698788 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.95768714698788 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32372903621579 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32372903621579 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32372903621579 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32372903621579 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45610193983737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.45610193983737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.45610193983737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.45610193983737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.45610193983737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.45610193983737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.45610193983737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45610193983737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.45610193983737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.45610193983737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.45610193983737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.45610193983737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.45610193983737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.45610193983737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.45610193983737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.45610193983737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.45610193983737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38991548802658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.38991548802658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.38991548802658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.38991548802658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.38991548802658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38991548802658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38991548802658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38991548802658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38991548802658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38991548802658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38991548802658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38991548802658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38991548802658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38991548802658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38991548802658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38991548802658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38991548802658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35682226212119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.35682226212119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.35682226212119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.35682226212119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.35682226212119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.35682226212119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.35682226212119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35682226212119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35682226212119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35682226212119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.35682226212119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.35682226212119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.35682226212119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.35682226212119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.35682226212119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.35682226212119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.35682226212119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34027564916849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34027564916849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34027564916849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34027564916849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34027564916849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34027564916849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34027564916849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34027564916849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34027564916849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34027564916849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34027564916849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34027564916849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.34027564916849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.34027564916849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.34027564916849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.34027564916849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.34027564916849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32372903621579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32372903621579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32372903621579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32372903621579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32372903621579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32372903621579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32372903621579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32372903621579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32372903621579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32372903621579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32372903621579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32372903621579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32372903621579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32372903621579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32372903621579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32372903621579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32372903621579 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.49839951159704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.49839951159704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.49839951159704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.49839951159704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.64823946275674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.64823946275674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.64823946275674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.64823946275674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.64823946275674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.64823946275674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.64823946275674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.64823946275674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.64823946275674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.64823946275674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.64823946275674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.64823946275674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.64823946275674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.64823946275674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.64823946275674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.64823946275674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.64823946275674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.57331948717689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.57331948717689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.57331948717689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.57331948717689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.57331948717689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.57331948717689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.57331948717689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.57331948717689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.57331948717689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.57331948717689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.57331948717689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.57331948717689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.57331948717689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.57331948717689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.57331948717689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.57331948717689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.57331948717689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.53585949938696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.53585949938696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.53585949938696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.53585949938696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.53585949938696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.53585949938696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.53585949938696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.53585949938696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.53585949938696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.53585949938696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.53585949938696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.53585949938696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.53585949938696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.53585949938696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.53585949938696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.53585949938696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.53585949938696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.517129505492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.517129505492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.517129505492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.517129505492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.517129505492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.517129505492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.517129505492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.517129505492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.517129505492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.517129505492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.517129505492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.517129505492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.517129505492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.517129505492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.517129505492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.517129505492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.517129505492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49839951159704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.49839951159704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.49839951159704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.49839951159704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.49839951159704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.49839951159704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.49839951159704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49839951159704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.49839951159704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49839951159704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.49839951159704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.49839951159704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.49839951159704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.49839951159704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49839951159704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.49839951159704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.49839951159704 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.36985307852763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.36985307852763 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.36985307852763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.36985307852763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13286777067487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13286777067487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13286777067487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13286777067487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13286777067487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13286777067487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13286777067487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13286777067487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13286777067487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13286777067487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13286777067487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13286777067487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13286777067487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13286777067487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13286777067487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.13286777067487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.13286777067487 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.25136042460125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.25136042460125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.25136042460125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.25136042460125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.25136042460125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.25136042460125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.25136042460125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.25136042460125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.25136042460125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.25136042460125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.25136042460125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.25136042460125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.25136042460125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.25136042460125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.25136042460125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.25136042460125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.25136042460125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.31060675156444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.31060675156444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.31060675156444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.31060675156444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.31060675156444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.31060675156444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.31060675156444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.31060675156444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.31060675156444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.31060675156444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.31060675156444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.31060675156444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.31060675156444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.31060675156444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.31060675156444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.31060675156444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.31060675156444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34022991504604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34022991504604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34022991504604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34022991504604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34022991504604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34022991504604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34022991504604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34022991504604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34022991504604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34022991504604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34022991504604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34022991504604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34022991504604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34022991504604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34022991504604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.34022991504604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.34022991504604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36985307852763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.36985307852763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.36985307852763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.36985307852763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.36985307852763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.36985307852763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.36985307852763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.36985307852763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.36985307852763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.36985307852763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36985307852763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.36985307852763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.36985307852763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.36985307852763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.36985307852763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.36985307852763 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.36985307852763 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.270819889592728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.270819889592728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.270819889592728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.270819889592728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243737900633455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.243737900633455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.243737900633455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.243737900633455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.243737900633455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.243737900633455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.243737900633455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.243737900633455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.243737900633455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.243737900633455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.243737900633455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.243737900633455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.243737900633455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.243737900633455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.243737900633455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.243737900633455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.243737900633455 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257278895113091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.257278895113091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257278895113091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257278895113091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257278895113091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257278895113091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257278895113091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257278895113091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257278895113091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257278895113091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257278895113091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257278895113091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257278895113091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257278895113091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257278895113091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257278895113091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257278895113091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.26404939235291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.26404939235291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.26404939235291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.26404939235291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.26404939235291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.26404939235291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.26404939235291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.26404939235291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.26404939235291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.26404939235291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.26404939235291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.26404939235291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.26404939235291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.26404939235291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.26404939235291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.26404939235291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.26404939235291 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267434640972819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.267434640972819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.267434640972819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267434640972819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267434640972819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267434640972819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267434640972819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267434640972819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267434640972819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267434640972819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267434640972819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267434640972819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267434640972819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267434640972819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267434640972819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267434640972819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267434640972819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270819889592728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.270819889592728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270819889592728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270819889592728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270819889592728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270819889592728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270819889592728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270819889592728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270819889592728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270819889592728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270819889592728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270819889592728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270819889592728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270819889592728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270819889592728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.270819889592728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.270819889592728 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.287851147607789 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.287851147607789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.287851147607789 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.287851147607789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.25906603284701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.25906603284701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.25906603284701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.25906603284701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.25906603284701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.25906603284701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.25906603284701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.25906603284701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.25906603284701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.25906603284701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.25906603284701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.25906603284701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.25906603284701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.25906603284701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.25906603284701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.25906603284701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.25906603284701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273458590227399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.273458590227399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.273458590227399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.273458590227399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.273458590227399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.273458590227399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.273458590227399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.273458590227399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273458590227399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.273458590227399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.273458590227399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.273458590227399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.273458590227399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.273458590227399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.273458590227399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.273458590227399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.273458590227399 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280654868917594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280654868917594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280654868917594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280654868917594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280654868917594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280654868917594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280654868917594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280654868917594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280654868917594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280654868917594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280654868917594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280654868917594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.280654868917594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.280654868917594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.280654868917594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.280654868917594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.280654868917594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.284253008262691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.284253008262691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.284253008262691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.284253008262691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.284253008262691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.284253008262691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.284253008262691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.284253008262691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.284253008262691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.284253008262691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.284253008262691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.284253008262691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.284253008262691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.284253008262691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.284253008262691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.284253008262691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.284253008262691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287851147607789 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287851147607789 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287851147607789 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287851147607789 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287851147607789 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287851147607789 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287851147607789 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287851147607789 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287851147607789 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287851147607789 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287851147607789 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287851147607789 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.287851147607789 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.287851147607789 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.287851147607789 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.287851147607789 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.287851147607789 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.442110688465053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.442110688465053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.442110688465053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.442110688465053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397899619618548 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.397899619618548 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.397899619618548 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.397899619618548 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.397899619618548 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.397899619618548 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.397899619618548 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.397899619618548 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397899619618548 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.397899619618548 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.397899619618548 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.397899619618548 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.397899619618548 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.397899619618548 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.397899619618548 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.397899619618548 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.397899619618548 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420005154041801 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.420005154041801 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.420005154041801 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.420005154041801 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.420005154041801 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.420005154041801 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.420005154041801 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.420005154041801 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420005154041801 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.420005154041801 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.420005154041801 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.420005154041801 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.420005154041801 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.420005154041801 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.420005154041801 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.420005154041801 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.420005154041801 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.431057921253427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.431057921253427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.431057921253427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.431057921253427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.431057921253427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.431057921253427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.431057921253427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.431057921253427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.431057921253427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.431057921253427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.431057921253427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.431057921253427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.431057921253427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.431057921253427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.431057921253427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.431057921253427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.431057921253427 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.43658430485924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.43658430485924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.43658430485924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.43658430485924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.43658430485924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.43658430485924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.43658430485924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.43658430485924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.43658430485924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.43658430485924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.43658430485924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.43658430485924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.43658430485924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.43658430485924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.43658430485924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.43658430485924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.43658430485924 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442110688465053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.442110688465053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.442110688465053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.442110688465053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.442110688465053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.442110688465053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.442110688465053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.442110688465053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442110688465053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.442110688465053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.442110688465053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.442110688465053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.442110688465053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.442110688465053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.442110688465053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.442110688465053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.442110688465053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.248037892619407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.248037892619407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.248037892619407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.248037892619407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.272841681881348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.272841681881348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.272841681881348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.272841681881348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.272841681881348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.272841681881348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.272841681881348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.272841681881348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.272841681881348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.272841681881348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.272841681881348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.272841681881348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.272841681881348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.272841681881348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.272841681881348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.272841681881348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.272841681881348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.260439787250377 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.260439787250377 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.260439787250377 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.260439787250377 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.260439787250377 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.260439787250377 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.260439787250377 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.260439787250377 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.260439787250377 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.260439787250377 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.260439787250377 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.260439787250377 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.260439787250377 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.260439787250377 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.260439787250377 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.260439787250377 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.260439787250377 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254238839934892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.254238839934892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.254238839934892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254238839934892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254238839934892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254238839934892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254238839934892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254238839934892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254238839934892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254238839934892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254238839934892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254238839934892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254238839934892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254238839934892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254238839934892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254238839934892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254238839934892 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251138366277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.251138366277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.251138366277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.251138366277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.251138366277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251138366277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251138366277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251138366277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251138366277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251138366277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251138366277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251138366277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251138366277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251138366277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251138366277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251138366277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251138366277149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.248037892619407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.248037892619407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.248037892619407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.248037892619407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.248037892619407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.248037892619407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.248037892619407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.248037892619407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.248037892619407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.248037892619407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.248037892619407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.248037892619407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.248037892619407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.248037892619407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.248037892619407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.248037892619407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.248037892619407 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.25696090338227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.38234762023684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.44504097866412 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.47638765787776 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.50773433709141 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.50773433709141 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.92212761074511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.92212761074511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.92212761074511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.92212761074511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01434037181962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.968233991282365 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.945180801013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.933654205879423 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.92212761074511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.92212761074511 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.760758762360775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.760758762360775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.760758762360775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.760758762360775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.684682886124697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.684682886124697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.684682886124697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.684682886124697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.684682886124697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.684682886124697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.684682886124697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.684682886124697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.684682886124697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.684682886124697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.684682886124697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.684682886124697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.684682886124697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.684682886124697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.684682886124697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.684682886124697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.684682886124697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.722720824242736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.722720824242736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.722720824242736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.722720824242736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.722720824242736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.722720824242736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.722720824242736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.722720824242736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.722720824242736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.722720824242736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.722720824242736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.722720824242736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.722720824242736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.722720824242736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.722720824242736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.722720824242736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.722720824242736 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.741739793301755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.741739793301755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.741739793301755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.741739793301755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.741739793301755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.741739793301755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.741739793301755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.741739793301755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.741739793301755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.741739793301755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.741739793301755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.741739793301755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.741739793301755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.741739793301755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.741739793301755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.741739793301755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.741739793301755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.751249277831265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.751249277831265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.751249277831265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.751249277831265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.751249277831265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.751249277831265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.751249277831265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.751249277831265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.751249277831265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.751249277831265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.751249277831265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.751249277831265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.751249277831265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.751249277831265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.751249277831265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.751249277831265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.751249277831265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760758762360775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.760758762360775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.760758762360775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.760758762360775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.760758762360775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.760758762360775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.760758762360775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.760758762360775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.760758762360775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.760758762360775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.760758762360775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.760758762360775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.760758762360775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.760758762360775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.760758762360775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.760758762360775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.760758762360775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.078665792125 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.078665792125 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.078665792125 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.078665792125 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.970799212912496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.970799212912496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.970799212912496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.970799212912496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.970799212912496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.970799212912496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.970799212912496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.970799212912496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.970799212912496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.970799212912496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.970799212912496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.970799212912496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.970799212912496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.970799212912496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.970799212912496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.970799212912496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.970799212912496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02473250251875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02473250251875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02473250251875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02473250251875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02473250251875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02473250251875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02473250251875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02473250251875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02473250251875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02473250251875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02473250251875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02473250251875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02473250251875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02473250251875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02473250251875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02473250251875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.02473250251875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05169914732187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05169914732187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05169914732187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05169914732187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05169914732187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05169914732187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05169914732187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05169914732187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05169914732187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05169914732187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05169914732187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05169914732187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05169914732187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05169914732187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.05169914732187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.05169914732187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.05169914732187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.06518246972343 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.06518246972343 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.06518246972343 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.06518246972343 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.06518246972343 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.06518246972343 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.06518246972343 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.06518246972343 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.06518246972343 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.06518246972343 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.06518246972343 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.06518246972343 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.06518246972343 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.06518246972343 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.06518246972343 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.06518246972343 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.06518246972343 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.078665792125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.078665792125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.078665792125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.078665792125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.078665792125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.078665792125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.078665792125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.078665792125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.078665792125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.078665792125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.078665792125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.078665792125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.078665792125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.078665792125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.078665792125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.078665792125 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.078665792125 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.29533275030006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.29533275030006 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.29533275030006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.29533275030006 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.06579947527006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.06579947527006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.06579947527006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.06579947527006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.06579947527006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.06579947527006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.06579947527006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.06579947527006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.06579947527006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.06579947527006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.06579947527006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.06579947527006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.06579947527006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.06579947527006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.06579947527006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.06579947527006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.06579947527006 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.18056611278506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.18056611278506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.18056611278506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.18056611278506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.18056611278506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.18056611278506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.18056611278506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.18056611278506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.18056611278506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.18056611278506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.18056611278506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.18056611278506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.18056611278506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.18056611278506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.18056611278506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.18056611278506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.18056611278506 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23794943154256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.23794943154256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.23794943154256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.23794943154256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.23794943154256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23794943154256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23794943154256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23794943154256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23794943154256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23794943154256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23794943154256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23794943154256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23794943154256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23794943154256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23794943154256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23794943154256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23794943154256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.26664109092131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.26664109092131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.26664109092131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.26664109092131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.26664109092131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.26664109092131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.26664109092131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.26664109092131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.26664109092131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.26664109092131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.26664109092131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.26664109092131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.26664109092131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.26664109092131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.26664109092131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.26664109092131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.26664109092131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29533275030006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.29533275030006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.29533275030006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.29533275030006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.29533275030006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.29533275030006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.29533275030006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.29533275030006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.29533275030006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.29533275030006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.29533275030006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29533275030006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.29533275030006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.29533275030006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.29533275030006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.29533275030006 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.29533275030006 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.37041412696516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.37041412696516 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.37041412696516 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.37041412696516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.50745553966167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.43893483331341 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40467448013929 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38754430355222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37041412696516 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.37041412696516 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.48102945193256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.48102945193256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.48102945193256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.48102945193256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.72913239712581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.72913239712581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.72913239712581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.72913239712581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.72913239712581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.72913239712581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.72913239712581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.72913239712581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.72913239712581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.72913239712581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.72913239712581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.72913239712581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.72913239712581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.72913239712581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.72913239712581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.72913239712581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.72913239712581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.60508092452919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.60508092452919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.60508092452919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.60508092452919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.60508092452919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.60508092452919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.60508092452919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.60508092452919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.60508092452919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.60508092452919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.60508092452919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.60508092452919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.60508092452919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.60508092452919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.60508092452919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.60508092452919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.60508092452919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.54305518823087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.54305518823087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.54305518823087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.54305518823087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.54305518823087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.54305518823087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54305518823087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.54305518823087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.54305518823087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54305518823087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54305518823087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.54305518823087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.54305518823087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.54305518823087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.54305518823087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.54305518823087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.54305518823087 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.51204232008171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.51204232008171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.51204232008171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.51204232008171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.51204232008171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.51204232008171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.51204232008171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.51204232008171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.51204232008171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.51204232008171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.51204232008171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.51204232008171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.51204232008171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.51204232008171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.51204232008171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.51204232008171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.51204232008171 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.48102945193256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.48102945193256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.48102945193256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.48102945193256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.48102945193256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.48102945193256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.48102945193256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.48102945193256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.48102945193256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.48102945193256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.48102945193256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.48102945193256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.48102945193256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.48102945193256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.48102945193256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.48102945193256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.48102945193256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.22891599445302 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.22891599445302 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.22891599445302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.22891599445302 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.45180759389833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.45180759389833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.45180759389833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.45180759389833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.45180759389833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.45180759389833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.45180759389833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.45180759389833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.45180759389833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.45180759389833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.45180759389833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.45180759389833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.45180759389833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.45180759389833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.45180759389833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.45180759389833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.45180759389833 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.34036179417567 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.34036179417567 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.34036179417567 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.34036179417567 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.34036179417567 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.34036179417567 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.34036179417567 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.34036179417567 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.34036179417567 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34036179417567 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.34036179417567 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.34036179417567 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.34036179417567 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.34036179417567 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.34036179417567 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.34036179417567 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.34036179417567 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.28463889431435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.28463889431435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.28463889431435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.28463889431435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.28463889431435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.28463889431435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.28463889431435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.28463889431435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.28463889431435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.28463889431435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.28463889431435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.28463889431435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.28463889431435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.28463889431435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.28463889431435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.28463889431435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.28463889431435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25677744438369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.25677744438369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.25677744438369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.25677744438369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.25677744438369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.25677744438369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.25677744438369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.25677744438369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.25677744438369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.25677744438369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.25677744438369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.25677744438369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.25677744438369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.25677744438369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.25677744438369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.25677744438369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.25677744438369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22891599445302 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.22891599445302 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.22891599445302 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.22891599445302 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.22891599445302 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.22891599445302 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.22891599445302 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22891599445302 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.22891599445302 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.22891599445302 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.22891599445302 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.22891599445302 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.22891599445302 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.22891599445302 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.22891599445302 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.22891599445302 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.22891599445302 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.93372607478961 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.93372607478961 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.93372607478961 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.93372607478961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.840353467310649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.840353467310649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.840353467310649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.840353467310649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.840353467310649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.840353467310649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.840353467310649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.840353467310649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.840353467310649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.840353467310649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.840353467310649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.840353467310649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.840353467310649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.840353467310649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.840353467310649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.840353467310649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.840353467310649 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.88703977105013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.88703977105013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.88703977105013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.88703977105013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.88703977105013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.88703977105013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.88703977105013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.88703977105013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.88703977105013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.88703977105013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.88703977105013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.88703977105013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.88703977105013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.88703977105013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.88703977105013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.88703977105013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.88703977105013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.91038292291987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.91038292291987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.91038292291987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.91038292291987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.91038292291987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.91038292291987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.91038292291987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.91038292291987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.91038292291987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.91038292291987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.91038292291987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.91038292291987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.91038292291987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.91038292291987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.91038292291987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.91038292291987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.91038292291987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.92205449885474 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.92205449885474 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.92205449885474 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.92205449885474 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.92205449885474 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.92205449885474 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.92205449885474 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.92205449885474 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.92205449885474 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.92205449885474 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.92205449885474 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.92205449885474 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.92205449885474 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.92205449885474 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.92205449885474 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.92205449885474 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.92205449885474 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.93372607478961 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.93372607478961 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.93372607478961 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.93372607478961 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.93372607478961 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.93372607478961 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.93372607478961 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.93372607478961 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.93372607478961 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.93372607478961 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.93372607478961 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.93372607478961 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.93372607478961 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.93372607478961 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.93372607478961 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.93372607478961 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.93372607478961 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02898573022977 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02898573022977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02898573022977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02898573022977 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23188430325274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.23188430325274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.23188430325274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.23188430325274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.23188430325274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.23188430325274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23188430325274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23188430325274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23188430325274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23188430325274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23188430325274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23188430325274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23188430325274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23188430325274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23188430325274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23188430325274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23188430325274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.13043501674126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.13043501674126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.13043501674126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.13043501674126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.13043501674126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.13043501674126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.13043501674126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.13043501674126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.13043501674126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.13043501674126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.13043501674126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.13043501674126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.13043501674126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.13043501674126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.13043501674126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.13043501674126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.13043501674126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.07971037348551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.07971037348551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.07971037348551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.07971037348551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.07971037348551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.07971037348551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.07971037348551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.07971037348551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.07971037348551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.07971037348551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.07971037348551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.07971037348551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.07971037348551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.07971037348551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.07971037348551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.07971037348551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.07971037348551 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05434805185764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.05434805185764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.05434805185764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.05434805185764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.05434805185764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.05434805185764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.05434805185764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.05434805185764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.05434805185764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.05434805185764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.05434805185764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.05434805185764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.05434805185764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.05434805185764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.05434805185764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.05434805185764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.05434805185764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02898573022977 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02898573022977 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02898573022977 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02898573022977 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02898573022977 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02898573022977 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02898573022977 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02898573022977 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02898573022977 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02898573022977 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02898573022977 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02898573022977 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02898573022977 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02898573022977 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02898573022977 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02898573022977 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02898573022977 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.27001736941172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.27001736941172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.27001736941172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.27001736941172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.49701910635289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.49701910635289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.49701910635289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.49701910635289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.49701910635289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.49701910635289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.49701910635289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.49701910635289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.49701910635289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.49701910635289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.49701910635289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.49701910635289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.49701910635289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.49701910635289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.49701910635289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.49701910635289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.49701910635289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38351823788231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.38351823788231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.38351823788231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.38351823788231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.38351823788231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.38351823788231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.38351823788231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.38351823788231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38351823788231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38351823788231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38351823788231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.38351823788231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.38351823788231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.38351823788231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.38351823788231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.38351823788231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.38351823788231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32676780364701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.32676780364701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.32676780364701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.32676780364701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32676780364701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32676780364701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32676780364701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32676780364701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32676780364701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32676780364701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32676780364701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32676780364701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32676780364701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32676780364701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.32676780364701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32676780364701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.32676780364701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.29839258652937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.29839258652937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.29839258652937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.29839258652937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.29839258652937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.29839258652937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.29839258652937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.29839258652937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.29839258652937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.29839258652937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.29839258652937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.29839258652937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.29839258652937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.29839258652937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.29839258652937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.29839258652937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.29839258652937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.27001736941172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.27001736941172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.27001736941172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.27001736941172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.27001736941172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.27001736941172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.27001736941172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.27001736941172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.27001736941172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.27001736941172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.27001736941172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.27001736941172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.27001736941172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.27001736941172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.27001736941172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.27001736941172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.27001736941172 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.71191584422709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.71191584422709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.71191584422709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.71191584422709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.54072425980438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.54072425980438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.54072425980438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.54072425980438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.54072425980438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.54072425980438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.54072425980438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.54072425980438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.54072425980438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.54072425980438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.54072425980438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.54072425980438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.54072425980438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.54072425980438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.54072425980438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.54072425980438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.54072425980438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.62632005201574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.62632005201574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.62632005201574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.62632005201574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.62632005201574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.62632005201574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.62632005201574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.62632005201574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.62632005201574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.62632005201574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.62632005201574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.62632005201574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.62632005201574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.62632005201574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.62632005201574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.62632005201574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.62632005201574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.66911794812141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.66911794812141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.66911794812141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.66911794812141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.66911794812141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.66911794812141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.66911794812141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.66911794812141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.66911794812141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.66911794812141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.66911794812141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.66911794812141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.66911794812141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.66911794812141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.66911794812141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.66911794812141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.66911794812141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.69051689617425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.69051689617425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.69051689617425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.69051689617425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.69051689617425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.69051689617425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.69051689617425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.69051689617425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.69051689617425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.69051689617425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.69051689617425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.69051689617425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.69051689617425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.69051689617425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.69051689617425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.69051689617425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.69051689617425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71191584422709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.71191584422709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.71191584422709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.71191584422709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.71191584422709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.71191584422709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.71191584422709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.71191584422709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.71191584422709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.71191584422709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.71191584422709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.71191584422709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71191584422709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.71191584422709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.71191584422709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.71191584422709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.71191584422709 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221031342719146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221031342719146 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221031342719146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221031342719146 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198928208447232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.198928208447232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.198928208447232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.198928208447232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.198928208447232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.198928208447232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.198928208447232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.198928208447232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.198928208447232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.198928208447232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198928208447232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.198928208447232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.198928208447232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.198928208447232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.198928208447232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.198928208447232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.198928208447232 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209979775583189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.209979775583189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.209979775583189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.209979775583189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.209979775583189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.209979775583189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.209979775583189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.209979775583189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.209979775583189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.209979775583189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209979775583189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.209979775583189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.209979775583189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.209979775583189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.209979775583189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.209979775583189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.209979775583189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215505559151168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.215505559151168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.215505559151168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.215505559151168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.215505559151168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.215505559151168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.215505559151168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.215505559151168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.215505559151168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.215505559151168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215505559151168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.215505559151168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.215505559151168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.215505559151168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.215505559151168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.215505559151168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.215505559151168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.218268450935157 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.218268450935157 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.218268450935157 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.218268450935157 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.218268450935157 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.218268450935157 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.218268450935157 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.218268450935157 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.218268450935157 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.218268450935157 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.218268450935157 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.218268450935157 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.218268450935157 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.218268450935157 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.218268450935157 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.218268450935157 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.218268450935157 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221031342719146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.221031342719146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.221031342719146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.221031342719146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.221031342719146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.221031342719146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.221031342719146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221031342719146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221031342719146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221031342719146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221031342719146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221031342719146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221031342719146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221031342719146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221031342719146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221031342719146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221031342719146 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0934500906135024 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0934500906135024 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0934500906135024 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0934500906135024 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.102795099674853 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.102795099674853 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.102795099674853 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.102795099674853 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.102795099674853 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.102795099674853 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.102795099674853 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.102795099674853 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.102795099674853 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.102795099674853 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.102795099674853 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.102795099674853 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.102795099674853 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.102795099674853 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.102795099674853 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.102795099674853 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.102795099674853 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0981225951441775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0981225951441775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0981225951441775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0981225951441775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0981225951441775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0981225951441775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0981225951441775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0981225951441775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0981225951441775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0981225951441775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0981225951441775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0981225951441775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0981225951441775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0981225951441775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0981225951441775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0981225951441775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0981225951441775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.09578634287884 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.09578634287884 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.09578634287884 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.09578634287884 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.09578634287884 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.09578634287884 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.09578634287884 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.09578634287884 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.09578634287884 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.09578634287884 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.09578634287884 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.09578634287884 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.09578634287884 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.09578634287884 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.09578634287884 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.09578634287884 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.09578634287884 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0946182167461712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0946182167461712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0946182167461712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0946182167461712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0946182167461712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0946182167461712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0946182167461712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0946182167461712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0946182167461712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0946182167461712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0946182167461712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0946182167461712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0946182167461712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0946182167461712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0946182167461712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0946182167461712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0946182167461712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0934500906135024 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0934500906135024 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0934500906135024 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0934500906135024 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0934500906135024 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0934500906135024 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0934500906135024 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0934500906135024 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0934500906135024 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0934500906135024 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0934500906135024 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0934500906135024 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0934500906135024 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0934500906135024 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0934500906135024 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0934500906135024 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0934500906135024 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.229777306180349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.229777306180349 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.229777306180349 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.229777306180349 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252755036798384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252755036798384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252755036798384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252755036798384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252755036798384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252755036798384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252755036798384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252755036798384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252755036798384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252755036798384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252755036798384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252755036798384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252755036798384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252755036798384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.252755036798384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.252755036798384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.252755036798384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.241266171489367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.241266171489367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.241266171489367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.241266171489367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.241266171489367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.241266171489367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.241266171489367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.241266171489367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.241266171489367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.241266171489367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.241266171489367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.241266171489367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.241266171489367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.241266171489367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.241266171489367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.241266171489367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.241266171489367 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.235521738834858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.235521738834858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.235521738834858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.235521738834858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.235521738834858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.235521738834858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.235521738834858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.235521738834858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.235521738834858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.235521738834858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.235521738834858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.235521738834858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.235521738834858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.235521738834858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.235521738834858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.235521738834858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.235521738834858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232649522507604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.232649522507604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.232649522507604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.232649522507604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232649522507604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232649522507604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232649522507604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232649522507604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232649522507604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232649522507604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232649522507604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232649522507604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232649522507604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232649522507604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232649522507604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232649522507604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232649522507604 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229777306180349 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.229777306180349 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.229777306180349 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.229777306180349 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.229777306180349 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.229777306180349 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.229777306180349 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.229777306180349 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.229777306180349 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.229777306180349 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.229777306180349 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.229777306180349 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.229777306180349 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.229777306180349 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.229777306180349 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.229777306180349 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.229777306180349 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.946750980965227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.946750980965227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.946750980965227 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.946750980965227 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04142607906175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.04142607906175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.04142607906175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.04142607906175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.04142607906175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.04142607906175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04142607906175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04142607906175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04142607906175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04142607906175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04142607906175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04142607906175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04142607906175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04142607906175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.04142607906175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.04142607906175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.04142607906175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.994088530013488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.994088530013488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.994088530013488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.994088530013488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.994088530013488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.994088530013488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.994088530013488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.994088530013488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.994088530013488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.994088530013488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.994088530013488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.994088530013488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.994088530013488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.994088530013488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.994088530013488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.994088530013488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.994088530013488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.970419755489358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.970419755489358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.970419755489358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.970419755489358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.970419755489358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.970419755489358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.970419755489358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.970419755489358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.970419755489358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.970419755489358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.970419755489358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.970419755489358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.970419755489358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.970419755489358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.970419755489358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.970419755489358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.970419755489358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.958585368227292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.958585368227292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.958585368227292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.958585368227292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.958585368227292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.958585368227292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.958585368227292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.958585368227292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.958585368227292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.958585368227292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.958585368227292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.958585368227292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.958585368227292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.958585368227292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.958585368227292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.958585368227292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.958585368227292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946750980965227 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.946750980965227 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.946750980965227 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.946750980965227 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.946750980965227 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.946750980965227 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.946750980965227 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.946750980965227 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.946750980965227 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.946750980965227 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.946750980965227 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.946750980965227 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.946750980965227 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.946750980965227 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.946750980965227 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.946750980965227 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.946750980965227 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28722892743731 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28722892743731 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28722892743731 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28722892743731 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15850603469358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.15850603469358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.15850603469358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.15850603469358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.15850603469358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.15850603469358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15850603469358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15850603469358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15850603469358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15850603469358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15850603469358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15850603469358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15850603469358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.15850603469358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.15850603469358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.15850603469358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.15850603469358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22286748106545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.22286748106545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.22286748106545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.22286748106545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22286748106545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.22286748106545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22286748106545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22286748106545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22286748106545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22286748106545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22286748106545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22286748106545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22286748106545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22286748106545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22286748106545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22286748106545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22286748106545 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25504820425138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.25504820425138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.25504820425138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.25504820425138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.25504820425138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.25504820425138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.25504820425138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.25504820425138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25504820425138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25504820425138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25504820425138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25504820425138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25504820425138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25504820425138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25504820425138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25504820425138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25504820425138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27113856584435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.27113856584435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.27113856584435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.27113856584435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27113856584435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27113856584435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27113856584435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27113856584435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27113856584435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27113856584435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27113856584435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27113856584435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27113856584435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27113856584435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27113856584435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27113856584435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27113856584435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28722892743731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.28722892743731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.28722892743731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.28722892743731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.28722892743731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.28722892743731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28722892743731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28722892743731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28722892743731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28722892743731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28722892743731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28722892743731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28722892743731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28722892743731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28722892743731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28722892743731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28722892743731 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.11457287594887 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.11457287594887 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.11457287594887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.11457287594887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00311558835398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.00311558835398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.00311558835398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.00311558835398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.00311558835398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.00311558835398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.00311558835398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.00311558835398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.00311558835398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.00311558835398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.00311558835398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00311558835398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.00311558835398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.00311558835398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.00311558835398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.00311558835398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.00311558835398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05884423215142 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05884423215142 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05884423215142 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05884423215142 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05884423215142 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05884423215142 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05884423215142 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05884423215142 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05884423215142 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05884423215142 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05884423215142 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05884423215142 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05884423215142 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05884423215142 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05884423215142 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.05884423215142 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.05884423215142 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08670855405014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.08670855405014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.08670855405014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.08670855405014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.08670855405014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08670855405014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08670855405014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08670855405014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08670855405014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08670855405014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08670855405014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08670855405014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08670855405014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08670855405014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08670855405014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08670855405014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08670855405014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10064071499951 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.10064071499951 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.10064071499951 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.10064071499951 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10064071499951 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10064071499951 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10064071499951 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10064071499951 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10064071499951 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10064071499951 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10064071499951 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10064071499951 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10064071499951 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10064071499951 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10064071499951 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.10064071499951 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.10064071499951 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11457287594887 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11457287594887 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11457287594887 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11457287594887 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11457287594887 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11457287594887 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11457287594887 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11457287594887 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11457287594887 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11457287594887 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11457287594887 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11457287594887 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11457287594887 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.11457287594887 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.11457287594887 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.11457287594887 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.11457287594887 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.77579653137154 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.77579653137154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.77579653137154 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.77579653137154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.49821687823439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.49821687823439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.49821687823439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.49821687823439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.49821687823439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.49821687823439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.49821687823439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.49821687823439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.49821687823439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.49821687823439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.49821687823439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.49821687823439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.49821687823439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.49821687823439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.49821687823439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.49821687823439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.49821687823439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.49821687823439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.63700670480297 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.63700670480297 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.63700670480297 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.63700670480297 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.63700670480297 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.63700670480297 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.63700670480297 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.63700670480297 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.63700670480297 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.63700670480297 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.63700670480297 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.63700670480297 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.63700670480297 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.63700670480297 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.63700670480297 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.63700670480297 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.63700670480297 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.63700670480297 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.70640161808725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.70640161808725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.70640161808725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.70640161808725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.70640161808725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.70640161808725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.70640161808725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.70640161808725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.70640161808725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.70640161808725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.70640161808725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.70640161808725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.70640161808725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.70640161808725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.70640161808725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.70640161808725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.70640161808725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.70640161808725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.7410990747294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.7410990747294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.7410990747294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.7410990747294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.7410990747294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.7410990747294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.7410990747294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.7410990747294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.7410990747294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.7410990747294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.7410990747294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.7410990747294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.7410990747294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.7410990747294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.7410990747294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.7410990747294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.7410990747294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.7410990747294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.77579653137154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.77579653137154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.77579653137154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.77579653137154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.77579653137154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.77579653137154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.77579653137154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.77579653137154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.77579653137154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.77579653137154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.77579653137154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.77579653137154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.77579653137154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.77579653137154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.77579653137154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.77579653137154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.77579653137154 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.77579653137154 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0527948342178429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0527948342178429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0527948342178429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0527948342178429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0580743176396272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0580743176396272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0580743176396272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0580743176396272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0580743176396272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0580743176396272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0580743176396272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0580743176396272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0580743176396272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0580743176396272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0580743176396272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0580743176396272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0580743176396272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0580743176396272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0580743176396272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0580743176396272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0580743176396272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0554345759287351 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0554345759287351 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0554345759287351 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0554345759287351 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0554345759287351 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0554345759287351 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0554345759287351 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0554345759287351 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0554345759287351 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0554345759287351 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0554345759287351 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0554345759287351 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0554345759287351 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0554345759287351 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0554345759287351 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0554345759287351 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0554345759287351 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.054114705073289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.054114705073289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.054114705073289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.054114705073289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.054114705073289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.054114705073289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.054114705073289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.054114705073289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.054114705073289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.054114705073289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.054114705073289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.054114705073289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.054114705073289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.054114705073289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.054114705073289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.054114705073289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.054114705073289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.053454769645566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.053454769645566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.053454769645566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.053454769645566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.053454769645566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.053454769645566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.053454769645566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.053454769645566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.053454769645566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.053454769645566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.053454769645566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.053454769645566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.053454769645566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.053454769645566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.053454769645566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.053454769645566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.053454769645566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0527948342178429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0527948342178429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0527948342178429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0527948342178429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0527948342178429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0527948342178429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0527948342178429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0527948342178429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0527948342178429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0527948342178429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0527948342178429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0527948342178429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0527948342178429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0527948342178429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0527948342178429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0527948342178429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0527948342178429 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115937922868186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115937922868186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115937922868186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115937922868186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127531715155004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.127531715155004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.127531715155004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.127531715155004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.127531715155004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.127531715155004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.127531715155004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.127531715155004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.127531715155004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.127531715155004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.127531715155004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.127531715155004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.127531715155004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.127531715155004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.127531715155004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.127531715155004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.127531715155004 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121734819011595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.121734819011595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.121734819011595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.121734819011595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.121734819011595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.121734819011595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.121734819011595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.121734819011595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.121734819011595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.121734819011595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121734819011595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.121734819011595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.121734819011595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.121734819011595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.121734819011595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.121734819011595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.121734819011595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11883637093989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.11883637093989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.11883637093989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.11883637093989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.11883637093989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11883637093989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11883637093989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11883637093989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11883637093989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11883637093989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11883637093989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11883637093989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11883637093989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11883637093989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11883637093989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11883637093989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11883637093989 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.117387146904038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.117387146904038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.117387146904038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.117387146904038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.117387146904038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.117387146904038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.117387146904038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.117387146904038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.117387146904038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.117387146904038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.117387146904038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.117387146904038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.117387146904038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.117387146904038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.117387146904038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.117387146904038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.117387146904038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115937922868186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.115937922868186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.115937922868186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.115937922868186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.115937922868186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.115937922868186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.115937922868186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115937922868186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115937922868186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115937922868186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115937922868186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115937922868186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115937922868186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115937922868186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115937922868186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115937922868186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115937922868186 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.05692541319135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.05692541319135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.05692541319135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.05692541319135 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36261795451048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.36261795451048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.36261795451048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.36261795451048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.36261795451048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.36261795451048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.36261795451048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.36261795451048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.36261795451048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.36261795451048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.36261795451048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.36261795451048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.36261795451048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.36261795451048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.36261795451048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.36261795451048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.36261795451048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.20977168385091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.20977168385091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.20977168385091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.20977168385091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.20977168385091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.20977168385091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.20977168385091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.20977168385091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.20977168385091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20977168385091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20977168385091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.20977168385091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.20977168385091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.20977168385091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.20977168385091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.20977168385091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.20977168385091 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.13334854852113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.13334854852113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.13334854852113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.13334854852113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.13334854852113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.13334854852113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.13334854852113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.13334854852113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.13334854852113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.13334854852113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.13334854852113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.13334854852113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.13334854852113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.13334854852113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.13334854852113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.13334854852113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.13334854852113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.09513698085624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.09513698085624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.09513698085624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.09513698085624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.09513698085624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.09513698085624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.09513698085624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.09513698085624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.09513698085624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09513698085624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09513698085624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.09513698085624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.09513698085624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.09513698085624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.09513698085624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.09513698085624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.09513698085624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05692541319135 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.05692541319135 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.05692541319135 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.05692541319135 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.05692541319135 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.05692541319135 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.05692541319135 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.05692541319135 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.05692541319135 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.05692541319135 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.05692541319135 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.05692541319135 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.05692541319135 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.05692541319135 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.05692541319135 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.05692541319135 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.05692541319135 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.5790356647279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.5790356647279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.5790356647279 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.5790356647279 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.83693923120069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.83693923120069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.83693923120069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.83693923120069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.83693923120069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.83693923120069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.83693923120069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.83693923120069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.83693923120069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.83693923120069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.83693923120069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.83693923120069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.83693923120069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.83693923120069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.83693923120069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.83693923120069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.83693923120069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.70798744796429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.70798744796429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.70798744796429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.70798744796429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.70798744796429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.70798744796429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.70798744796429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.70798744796429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.70798744796429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.70798744796429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.70798744796429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.70798744796429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.70798744796429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.70798744796429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.70798744796429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.70798744796429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.70798744796429 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.64351155634609 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.64351155634609 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.64351155634609 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.64351155634609 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.64351155634609 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.64351155634609 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.64351155634609 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.64351155634609 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.64351155634609 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.64351155634609 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.64351155634609 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.64351155634609 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.64351155634609 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.64351155634609 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.64351155634609 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.64351155634609 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.64351155634609 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.611273610537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.611273610537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.611273610537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.611273610537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.611273610537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.611273610537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.611273610537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.611273610537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.611273610537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.611273610537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.611273610537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.611273610537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.611273610537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.611273610537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.611273610537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.611273610537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.611273610537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5790356647279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.5790356647279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.5790356647279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.5790356647279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.5790356647279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.5790356647279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.5790356647279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.5790356647279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.5790356647279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.5790356647279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.5790356647279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.5790356647279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.5790356647279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.5790356647279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.5790356647279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.5790356647279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.5790356647279 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.86537624283321 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.86537624283321 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.86537624283321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.86537624283321 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.15191386711653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.15191386711653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.15191386711653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.15191386711653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.15191386711653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.15191386711653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.15191386711653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.15191386711653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.15191386711653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.15191386711653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.15191386711653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.15191386711653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.15191386711653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.15191386711653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.15191386711653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.15191386711653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.15191386711653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.00864505497487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.00864505497487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.00864505497487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.00864505497487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.00864505497487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.00864505497487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.00864505497487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.00864505497487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.00864505497487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.00864505497487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.00864505497487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.00864505497487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.00864505497487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.00864505497487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.00864505497487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.00864505497487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.00864505497487 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.93701064890404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.93701064890404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.93701064890404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.93701064890404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.93701064890404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.93701064890404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.93701064890404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.93701064890404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.93701064890404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.93701064890404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.93701064890404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.93701064890404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.93701064890404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.93701064890404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.93701064890404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.93701064890404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.93701064890404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.90119344586862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.90119344586862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.90119344586862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.90119344586862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.90119344586862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.90119344586862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.90119344586862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.90119344586862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.90119344586862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.90119344586862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.90119344586862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.90119344586862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.90119344586862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.90119344586862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.90119344586862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.90119344586862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.90119344586862 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86537624283321 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.86537624283321 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.86537624283321 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.86537624283321 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.86537624283321 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.86537624283321 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.86537624283321 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.86537624283321 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.86537624283321 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.86537624283321 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.86537624283321 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.86537624283321 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.86537624283321 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.86537624283321 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.86537624283321 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.86537624283321 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.86537624283321 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.32099038809941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.32099038809941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.32099038809941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.32099038809941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.18889134928947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.18889134928947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.18889134928947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.18889134928947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.18889134928947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.18889134928947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.18889134928947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.18889134928947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.18889134928947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.18889134928947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.18889134928947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.18889134928947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.18889134928947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.18889134928947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.18889134928947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.18889134928947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.18889134928947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25494086869444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.25494086869444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.25494086869444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.25494086869444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.25494086869444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.25494086869444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.25494086869444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.25494086869444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25494086869444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25494086869444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25494086869444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25494086869444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25494086869444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25494086869444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25494086869444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25494086869444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25494086869444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28796562839693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.28796562839693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.28796562839693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.28796562839693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.28796562839693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.28796562839693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28796562839693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28796562839693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28796562839693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28796562839693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28796562839693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28796562839693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28796562839693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28796562839693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28796562839693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28796562839693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28796562839693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30447800824817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.30447800824817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.30447800824817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.30447800824817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.30447800824817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.30447800824817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.30447800824817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.30447800824817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.30447800824817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.30447800824817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.30447800824817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.30447800824817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.30447800824817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.30447800824817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.30447800824817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.30447800824817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.30447800824817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32099038809941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.32099038809941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.32099038809941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.32099038809941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.32099038809941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.32099038809941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.32099038809941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.32099038809941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.32099038809941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.32099038809941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.32099038809941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32099038809941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.32099038809941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.32099038809941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.32099038809941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.32099038809941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.32099038809941 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.229217730829669 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.229217730829669 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.229217730829669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.229217730829669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.206295957746702 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.206295957746702 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.206295957746702 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.206295957746702 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.206295957746702 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.206295957746702 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.206295957746702 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.206295957746702 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.206295957746702 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.206295957746702 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.206295957746702 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.206295957746702 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.206295957746702 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.206295957746702 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.206295957746702 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.206295957746702 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.206295957746702 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217756844288186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.217756844288186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.217756844288186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.217756844288186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.217756844288186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.217756844288186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.217756844288186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.217756844288186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.217756844288186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.217756844288186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.217756844288186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217756844288186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.217756844288186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.217756844288186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.217756844288186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.217756844288186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.217756844288186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223487287558927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.223487287558927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.223487287558927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.223487287558927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.223487287558927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.223487287558927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.223487287558927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.223487287558927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.223487287558927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.223487287558927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.223487287558927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223487287558927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.223487287558927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.223487287558927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.223487287558927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.223487287558927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.223487287558927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226352509194298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226352509194298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226352509194298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226352509194298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226352509194298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226352509194298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226352509194298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226352509194298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226352509194298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226352509194298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226352509194298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226352509194298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226352509194298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226352509194298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.226352509194298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.226352509194298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.226352509194298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229217730829669 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.229217730829669 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.229217730829669 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.229217730829669 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.229217730829669 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.229217730829669 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.229217730829669 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.229217730829669 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.229217730829669 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.229217730829669 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.229217730829669 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.229217730829669 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.229217730829669 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.229217730829669 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.229217730829669 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.229217730829669 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.229217730829669 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477691298965987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477691298965987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477691298965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477691298965987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429922169069388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.429922169069388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.429922169069388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.429922169069388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.429922169069388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.429922169069388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.429922169069388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.429922169069388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.429922169069388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.429922169069388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.429922169069388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429922169069388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.429922169069388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.429922169069388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.429922169069388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.429922169069388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.429922169069388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.453806734017687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.453806734017687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.453806734017687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.453806734017687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.453806734017687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.453806734017687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.453806734017687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.453806734017687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.453806734017687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.453806734017687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.453806734017687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.453806734017687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.453806734017687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.453806734017687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.453806734017687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.453806734017687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.453806734017687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.465749016491837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.465749016491837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.465749016491837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.465749016491837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.465749016491837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.465749016491837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.465749016491837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.465749016491837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.465749016491837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.465749016491837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.465749016491837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.465749016491837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.465749016491837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.465749016491837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.465749016491837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.465749016491837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.465749016491837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471720157728912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.471720157728912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.471720157728912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.471720157728912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.471720157728912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.471720157728912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.471720157728912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.471720157728912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.471720157728912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.471720157728912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.471720157728912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471720157728912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.471720157728912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.471720157728912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.471720157728912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.471720157728912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.471720157728912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477691298965987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.477691298965987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.477691298965987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.477691298965987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.477691298965987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.477691298965987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.477691298965987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.477691298965987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477691298965987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477691298965987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477691298965987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477691298965987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477691298965987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477691298965987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477691298965987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477691298965987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477691298965987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232933763114726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232933763114726 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232933763114726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232933763114726 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.256227139426199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.256227139426199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.256227139426199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.256227139426199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.256227139426199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.256227139426199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.256227139426199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.256227139426199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.256227139426199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.256227139426199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.256227139426199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.256227139426199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.256227139426199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.256227139426199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.256227139426199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.256227139426199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.256227139426199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244580451270462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.244580451270462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.244580451270462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.244580451270462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.244580451270462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.244580451270462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.244580451270462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.244580451270462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.244580451270462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.244580451270462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.244580451270462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244580451270462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.244580451270462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.244580451270462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.244580451270462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.244580451270462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.244580451270462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238757107192594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.238757107192594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.238757107192594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.238757107192594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.238757107192594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.238757107192594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.238757107192594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.238757107192594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238757107192594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238757107192594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238757107192594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238757107192594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238757107192594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238757107192594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238757107192594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238757107192594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238757107192594 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23584543515366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.23584543515366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.23584543515366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.23584543515366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.23584543515366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.23584543515366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.23584543515366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.23584543515366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.23584543515366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.23584543515366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.23584543515366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23584543515366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.23584543515366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.23584543515366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.23584543515366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.23584543515366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.23584543515366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232933763114726 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.232933763114726 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.232933763114726 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.232933763114726 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.232933763114726 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232933763114726 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232933763114726 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232933763114726 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232933763114726 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232933763114726 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232933763114726 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232933763114726 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232933763114726 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232933763114726 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232933763114726 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232933763114726 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232933763114726 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0148816404883461 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0148816404883461 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0148816404883461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0148816404883461 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0133934764395115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0133934764395115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0133934764395115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0133934764395115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0133934764395115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0133934764395115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0133934764395115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0133934764395115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0133934764395115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0133934764395115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0133934764395115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0133934764395115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0133934764395115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0133934764395115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0133934764395115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0133934764395115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0133934764395115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0141375584639288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0141375584639288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0141375584639288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0141375584639288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0141375584639288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0141375584639288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0141375584639288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0141375584639288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0141375584639288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0141375584639288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0141375584639288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0141375584639288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0141375584639288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0141375584639288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0141375584639288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0141375584639288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0141375584639288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0145095994761375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0145095994761375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0145095994761375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0145095994761375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0145095994761375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0145095994761375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0145095994761375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0145095994761375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0145095994761375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0145095994761375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0145095994761375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0145095994761375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0145095994761375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0145095994761375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0145095994761375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0145095994761375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0145095994761375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0146956199822418 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0146956199822418 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0146956199822418 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0146956199822418 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0146956199822418 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0146956199822418 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0146956199822418 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0146956199822418 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0146956199822418 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0146956199822418 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0146956199822418 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0146956199822418 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0146956199822418 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0146956199822418 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0146956199822418 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0146956199822418 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0146956199822418 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0148816404883461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0148816404883461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0148816404883461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0148816404883461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0148816404883461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0148816404883461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0148816404883461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0148816404883461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0148816404883461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0148816404883461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0148816404883461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0148816404883461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0148816404883461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0148816404883461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0148816404883461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0148816404883461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0148816404883461 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.103463400634494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.103463400634494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.103463400634494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.103463400634494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0931170605710442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0931170605710442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0931170605710442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0931170605710442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0931170605710442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0931170605710442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0931170605710442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0931170605710442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0931170605710442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0931170605710442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0931170605710442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0931170605710442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0931170605710442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0931170605710442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0931170605710442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0931170605710442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0931170605710442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0982902306027689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0982902306027689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0982902306027689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0982902306027689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0982902306027689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0982902306027689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0982902306027689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0982902306027689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0982902306027689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0982902306027689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0982902306027689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0982902306027689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0982902306027689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0982902306027689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0982902306027689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0982902306027689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0982902306027689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.100876815618631 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.100876815618631 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.100876815618631 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.100876815618631 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.100876815618631 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.100876815618631 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.100876815618631 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.100876815618631 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.100876815618631 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.100876815618631 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.100876815618631 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.100876815618631 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.100876815618631 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.100876815618631 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.100876815618631 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.100876815618631 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.100876815618631 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102170108126562 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102170108126562 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102170108126562 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102170108126562 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102170108126562 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102170108126562 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102170108126562 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102170108126562 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102170108126562 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102170108126562 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102170108126562 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102170108126562 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102170108126562 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102170108126562 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102170108126562 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.102170108126562 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.102170108126562 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103463400634494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.103463400634494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.103463400634494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.103463400634494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.103463400634494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.103463400634494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.103463400634494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.103463400634494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.103463400634494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.103463400634494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.103463400634494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.103463400634494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.103463400634494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.103463400634494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.103463400634494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.103463400634494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.103463400634494 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.81613786282224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.81613786282224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.81613786282224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.81613786282224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.19775164910447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.19775164910447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.19775164910447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.19775164910447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.19775164910447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.19775164910447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.19775164910447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.19775164910447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.19775164910447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.19775164910447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.19775164910447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.19775164910447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.19775164910447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.19775164910447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.19775164910447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.19775164910447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.19775164910447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.00694475596335 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.00694475596335 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.00694475596335 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.00694475596335 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.00694475596335 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.00694475596335 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.00694475596335 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.00694475596335 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.00694475596335 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.00694475596335 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.00694475596335 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00694475596335 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.00694475596335 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.00694475596335 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.00694475596335 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.00694475596335 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.00694475596335 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.9115413093928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.9115413093928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.9115413093928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.9115413093928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.9115413093928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.9115413093928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.9115413093928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.9115413093928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.9115413093928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.9115413093928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.9115413093928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.9115413093928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.9115413093928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.9115413093928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.9115413093928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.9115413093928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.9115413093928 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.86383958610752 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.86383958610752 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.86383958610752 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.86383958610752 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.86383958610752 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.86383958610752 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.86383958610752 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.86383958610752 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.86383958610752 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.86383958610752 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.86383958610752 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.86383958610752 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.86383958610752 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.86383958610752 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.86383958610752 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.86383958610752 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.86383958610752 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.81613786282224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.81613786282224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.81613786282224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.81613786282224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.81613786282224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.81613786282224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.81613786282224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.81613786282224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.81613786282224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.81613786282224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.81613786282224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.81613786282224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.81613786282224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.81613786282224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.81613786282224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.81613786282224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.81613786282224 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.75657453977941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.75657453977941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.75657453977941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.75657453977941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.58091708580147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.58091708580147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.58091708580147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.58091708580147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.58091708580147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.58091708580147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.58091708580147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.58091708580147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.58091708580147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.58091708580147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.58091708580147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.58091708580147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.58091708580147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.58091708580147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.58091708580147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.58091708580147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.58091708580147 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.66874581279044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.66874581279044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.66874581279044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.66874581279044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.66874581279044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.66874581279044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.66874581279044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.66874581279044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.66874581279044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.66874581279044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.66874581279044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.66874581279044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.66874581279044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.66874581279044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.66874581279044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.66874581279044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.66874581279044 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71266017628492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.71266017628492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.71266017628492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.71266017628492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.71266017628492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.71266017628492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.71266017628492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.71266017628492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.71266017628492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.71266017628492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.71266017628492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.71266017628492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.71266017628492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.71266017628492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.71266017628492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.71266017628492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.71266017628492 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.73461735803217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.73461735803217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.73461735803217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.73461735803217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.73461735803217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.73461735803217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.73461735803217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.73461735803217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.73461735803217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.73461735803217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.73461735803217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.73461735803217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.73461735803217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.73461735803217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.73461735803217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.73461735803217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.73461735803217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75657453977941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.75657453977941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.75657453977941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.75657453977941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.75657453977941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.75657453977941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.75657453977941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.75657453977941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.75657453977941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.75657453977941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75657453977941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75657453977941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.75657453977941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75657453977941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.75657453977941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.75657453977941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.75657453977941 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0817159254528785 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0817159254528785 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0817159254528785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0817159254528785 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0735443329075907 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0776301291802346 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0796730273165566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0806944763847176 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0817159254528785 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.323655699373383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.323655699373383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.323655699373383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.323655699373383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.291290129436044 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307472914404714 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.315564306889048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.319610003131216 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.323655699373383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0135710511447593 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0135710511447593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0135710511447593 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0135710511447593 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0149281562592352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0142496037019973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0139103274233783 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137406892840688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0135710511447593 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0135710511447593 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.490990834494047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.490990834494047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.490990834494047 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.490990834494047 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.540089917943451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.540089917943451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.540089917943451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.540089917943451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.540089917943451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.540089917943451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.540089917943451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.540089917943451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.540089917943451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.540089917943451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.540089917943451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.540089917943451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.540089917943451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.540089917943451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.540089917943451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.540089917943451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.540089917943451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.540089917943451 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.515540376218749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.515540376218749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.515540376218749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.515540376218749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.515540376218749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.515540376218749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.515540376218749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.515540376218749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.515540376218749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.515540376218749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.515540376218749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.515540376218749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.515540376218749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.515540376218749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.515540376218749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.515540376218749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.515540376218749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.515540376218749 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.503265605356398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.503265605356398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.503265605356398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.503265605356398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.503265605356398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.503265605356398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.503265605356398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.503265605356398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.503265605356398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.503265605356398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.503265605356398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.503265605356398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.503265605356398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.503265605356398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.503265605356398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.503265605356398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.503265605356398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.503265605356398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.497128219925222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.497128219925222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.497128219925222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.497128219925222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.497128219925222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.497128219925222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.497128219925222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.497128219925222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.497128219925222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.497128219925222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.497128219925222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.497128219925222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.497128219925222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.497128219925222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.497128219925222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.497128219925222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.497128219925222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.497128219925222 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490990834494047 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490990834494047 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.490990834494047 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490990834494047 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.490990834494047 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.490990834494047 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.490990834494047 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.490990834494047 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.490990834494047 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.490990834494047 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.490990834494047 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490990834494047 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490990834494047 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490990834494047 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.490990834494047 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.490990834494047 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.490990834494047 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.490990834494047 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.284642473754739 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.284642473754739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.284642473754739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.284642473754739 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313106721130213 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.313106721130213 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.313106721130213 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.313106721130213 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.313106721130213 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.313106721130213 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.313106721130213 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.313106721130213 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.313106721130213 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.313106721130213 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.313106721130213 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.313106721130213 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313106721130213 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.313106721130213 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.313106721130213 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.313106721130213 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.313106721130213 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.313106721130213 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.298874597442476 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.298874597442476 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.298874597442476 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.298874597442476 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.298874597442476 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.298874597442476 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.298874597442476 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.298874597442476 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.298874597442476 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.298874597442476 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.298874597442476 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.298874597442476 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.298874597442476 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.298874597442476 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.298874597442476 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.298874597442476 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.298874597442476 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.298874597442476 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.291758535598608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.291758535598608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.291758535598608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.291758535598608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.291758535598608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.291758535598608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.291758535598608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.291758535598608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.291758535598608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.291758535598608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.291758535598608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.291758535598608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.291758535598608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.291758535598608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.291758535598608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.291758535598608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.291758535598608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.291758535598608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288200504676674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.288200504676674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.288200504676674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.288200504676674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.288200504676674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.288200504676674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.288200504676674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.288200504676674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.288200504676674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.288200504676674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.288200504676674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.288200504676674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288200504676674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.288200504676674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.288200504676674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.288200504676674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.288200504676674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.288200504676674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284642473754739 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.284642473754739 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.284642473754739 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.284642473754739 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.284642473754739 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.284642473754739 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.284642473754739 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.284642473754739 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.284642473754739 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.284642473754739 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.284642473754739 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.284642473754739 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.284642473754739 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.284642473754739 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.284642473754739 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.284642473754739 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.284642473754739 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.284642473754739 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.25650682774054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.25650682774054 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.25650682774054 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.25650682774054 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3821575105146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.3821575105146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.3821575105146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.3821575105146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.3821575105146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.3821575105146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.3821575105146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.3821575105146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3821575105146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3821575105146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3821575105146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3821575105146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3821575105146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3821575105146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3821575105146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3821575105146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3821575105146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31933216912757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31933216912757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31933216912757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31933216912757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31933216912757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31933216912757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31933216912757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31933216912757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31933216912757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31933216912757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31933216912757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31933216912757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31933216912757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31933216912757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31933216912757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31933216912757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31933216912757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28791949843405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.28791949843405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.28791949843405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.28791949843405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.28791949843405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.28791949843405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.28791949843405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.28791949843405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28791949843405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28791949843405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28791949843405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28791949843405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28791949843405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28791949843405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28791949843405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28791949843405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28791949843405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.2722131630873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.2722131630873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.2722131630873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.2722131630873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.2722131630873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.2722131630873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.2722131630873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.2722131630873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.2722131630873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.2722131630873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.2722131630873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.2722131630873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.2722131630873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.2722131630873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.2722131630873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.2722131630873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.2722131630873 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25650682774054 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.25650682774054 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.25650682774054 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.25650682774054 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.25650682774054 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.25650682774054 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.25650682774054 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.25650682774054 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.25650682774054 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.25650682774054 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.25650682774054 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.25650682774054 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.25650682774054 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.25650682774054 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.25650682774054 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.25650682774054 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.25650682774054 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.803420880288467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.803420880288467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.803420880288467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.803420880288467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.883762968317314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.883762968317314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.883762968317314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.883762968317314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.883762968317314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.883762968317314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.883762968317314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.883762968317314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.883762968317314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.883762968317314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.883762968317314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.883762968317314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.883762968317314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.883762968317314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.883762968317314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.883762968317314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.883762968317314 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.843591924302891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.843591924302891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.843591924302891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.843591924302891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.843591924302891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.843591924302891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.843591924302891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.843591924302891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.843591924302891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.843591924302891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.843591924302891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.843591924302891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.843591924302891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.843591924302891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.843591924302891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.843591924302891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.843591924302891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.823506402295679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.823506402295679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.823506402295679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.823506402295679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.823506402295679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.823506402295679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.823506402295679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.823506402295679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.823506402295679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.823506402295679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.823506402295679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.823506402295679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.823506402295679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.823506402295679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.823506402295679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.823506402295679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.823506402295679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.813463641292073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.813463641292073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.813463641292073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.813463641292073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.813463641292073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.813463641292073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.813463641292073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.813463641292073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.813463641292073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.813463641292073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.813463641292073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.813463641292073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.813463641292073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.813463641292073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.813463641292073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.813463641292073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.813463641292073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803420880288467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.803420880288467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.803420880288467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.803420880288467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.803420880288467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.803420880288467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.803420880288467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.803420880288467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.803420880288467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.803420880288467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.803420880288467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.803420880288467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.803420880288467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.803420880288467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.803420880288467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.803420880288467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.803420880288467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10152342779419 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10152342779419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10152342779419 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10152342779419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.21167577057361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.21167577057361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.21167577057361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.21167577057361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.21167577057361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.21167577057361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.21167577057361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.21167577057361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.21167577057361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.21167577057361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.21167577057361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.21167577057361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.21167577057361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.21167577057361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.21167577057361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.21167577057361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.21167577057361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1565995991839 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.1565995991839 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.1565995991839 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.1565995991839 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.1565995991839 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.1565995991839 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.1565995991839 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.1565995991839 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.1565995991839 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.1565995991839 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1565995991839 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.1565995991839 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.1565995991839 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.1565995991839 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.1565995991839 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.1565995991839 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.1565995991839 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.12906151348905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.12906151348905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.12906151348905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.12906151348905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.12906151348905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.12906151348905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.12906151348905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.12906151348905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.12906151348905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.12906151348905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.12906151348905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.12906151348905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.12906151348905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.12906151348905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.12906151348905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.12906151348905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.12906151348905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.11529247064162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.11529247064162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.11529247064162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.11529247064162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.11529247064162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.11529247064162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.11529247064162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.11529247064162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.11529247064162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.11529247064162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.11529247064162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.11529247064162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.11529247064162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.11529247064162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.11529247064162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.11529247064162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.11529247064162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10152342779419 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.10152342779419 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.10152342779419 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.10152342779419 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.10152342779419 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.10152342779419 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10152342779419 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10152342779419 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10152342779419 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10152342779419 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10152342779419 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10152342779419 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10152342779419 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10152342779419 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10152342779419 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10152342779419 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10152342779419 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.49383256353312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.49383256353312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.49383256353312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.49383256353312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.543215819886432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.543215819886432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.543215819886432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.543215819886432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.543215819886432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.543215819886432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.543215819886432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.543215819886432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.543215819886432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.543215819886432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.543215819886432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.543215819886432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.543215819886432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.543215819886432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.543215819886432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.543215819886432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.543215819886432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.543215819886432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.518524191709776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.518524191709776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.518524191709776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.518524191709776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.518524191709776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.518524191709776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.518524191709776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.518524191709776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.518524191709776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.518524191709776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.518524191709776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.518524191709776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.518524191709776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.518524191709776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.518524191709776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.518524191709776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.518524191709776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.518524191709776 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.506178377621448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.506178377621448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.506178377621448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.506178377621448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.506178377621448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.506178377621448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.506178377621448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.506178377621448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.506178377621448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.506178377621448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.506178377621448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.506178377621448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.506178377621448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.506178377621448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.506178377621448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.506178377621448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.506178377621448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.506178377621448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.500005470577284 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.500005470577284 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.500005470577284 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.500005470577284 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.500005470577284 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.500005470577284 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.500005470577284 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.500005470577284 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.500005470577284 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.500005470577284 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.500005470577284 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.500005470577284 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.500005470577284 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.500005470577284 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.500005470577284 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.500005470577284 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.500005470577284 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.500005470577284 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.49383256353312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.49383256353312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.49383256353312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.49383256353312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.49383256353312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.49383256353312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.49383256353312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.49383256353312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.49383256353312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.49383256353312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.49383256353312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.49383256353312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.49383256353312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.49383256353312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.49383256353312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.49383256353312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.06141383250196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.06141383250196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.06141383250196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.06141383250196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.067555215752156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.067555215752156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.067555215752156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.067555215752156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.067555215752156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.067555215752156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.067555215752156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.067555215752156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.067555215752156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.067555215752156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.067555215752156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.067555215752156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.067555215752156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.067555215752156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.067555215752156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.067555215752156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.067555215752156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.067555215752156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.064484524127058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.064484524127058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.064484524127058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.064484524127058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.064484524127058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.064484524127058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.064484524127058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.064484524127058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.064484524127058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.064484524127058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.064484524127058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.064484524127058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.064484524127058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.064484524127058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.064484524127058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.064484524127058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.064484524127058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.064484524127058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.062949178314509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.062949178314509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.062949178314509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.062949178314509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.062949178314509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.062949178314509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.062949178314509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.062949178314509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.062949178314509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.062949178314509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.062949178314509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.062949178314509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.062949178314509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.062949178314509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.062949178314509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.062949178314509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.062949178314509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.062949178314509 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0621815054082345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0621815054082345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0621815054082345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0621815054082345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0621815054082345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0621815054082345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0621815054082345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0621815054082345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0621815054082345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0621815054082345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0621815054082345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0621815054082345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0621815054082345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0621815054082345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0621815054082345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0621815054082345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0621815054082345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0621815054082345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.06141383250196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.06141383250196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.06141383250196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.06141383250196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.06141383250196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.06141383250196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.06141383250196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.06141383250196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.06141383250196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.06141383250196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.06141383250196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.06141383250196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.06141383250196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.06141383250196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.06141383250196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.06141383250196 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.41556818577601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.41556818577601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.41556818577601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.41556818577601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.17401136719841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.17401136719841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.17401136719841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.17401136719841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.17401136719841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.17401136719841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.17401136719841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.17401136719841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.17401136719841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.17401136719841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.17401136719841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.17401136719841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.17401136719841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.17401136719841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.17401136719841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.17401136719841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.17401136719841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29478977648721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.29478977648721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.29478977648721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.29478977648721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.29478977648721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.29478977648721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.29478977648721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.29478977648721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.29478977648721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.29478977648721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.29478977648721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.29478977648721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.29478977648721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29478977648721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.29478977648721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.29478977648721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.29478977648721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.35517898113161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.35517898113161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.35517898113161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.35517898113161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.35517898113161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.35517898113161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.35517898113161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.35517898113161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.35517898113161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.35517898113161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.35517898113161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.35517898113161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.35517898113161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.35517898113161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.35517898113161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.35517898113161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.35517898113161 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38537358345381 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.38537358345381 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.38537358345381 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.38537358345381 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.38537358345381 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.38537358345381 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.38537358345381 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.38537358345381 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.38537358345381 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.38537358345381 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.38537358345381 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38537358345381 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.38537358345381 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38537358345381 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.38537358345381 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.38537358345381 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.38537358345381 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.41556818577601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.41556818577601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.41556818577601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.41556818577601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.41556818577601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.41556818577601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.41556818577601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.41556818577601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.41556818577601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.41556818577601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.41556818577601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.41556818577601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.41556818577601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.41556818577601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.41556818577601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.41556818577601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.41556818577601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13384648659725 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13384648659725 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13384648659725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13384648659725 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.92046183793753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.92046183793753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.92046183793753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.92046183793753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.92046183793753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.92046183793753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.92046183793753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.92046183793753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.92046183793753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.92046183793753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.92046183793753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.92046183793753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.92046183793753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.92046183793753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.92046183793753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.92046183793753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.92046183793753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.02715416226739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.02715416226739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.02715416226739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.02715416226739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.02715416226739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.02715416226739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.02715416226739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.02715416226739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.02715416226739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.02715416226739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.02715416226739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.02715416226739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.02715416226739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.02715416226739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.02715416226739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.02715416226739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.02715416226739 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.08050032443232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.08050032443232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.08050032443232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.08050032443232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.08050032443232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.08050032443232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.08050032443232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.08050032443232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.08050032443232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.08050032443232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.08050032443232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.08050032443232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.08050032443232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.08050032443232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.08050032443232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.08050032443232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.08050032443232 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.10717340551479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.10717340551479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.10717340551479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.10717340551479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.10717340551479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.10717340551479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.10717340551479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.10717340551479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.10717340551479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.10717340551479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.10717340551479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.10717340551479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.10717340551479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.10717340551479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.10717340551479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.10717340551479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.10717340551479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13384648659725 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.13384648659725 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13384648659725 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13384648659725 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13384648659725 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13384648659725 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13384648659725 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13384648659725 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13384648659725 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13384648659725 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13384648659725 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13384648659725 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13384648659725 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13384648659725 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13384648659725 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13384648659725 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13384648659725 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02246048105831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02246048105831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02246048105831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02246048105831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22470652916414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.22470652916414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.22470652916414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.22470652916414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.22470652916414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.22470652916414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.22470652916414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.22470652916414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.22470652916414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.22470652916414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.22470652916414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.22470652916414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.22470652916414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.22470652916414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.22470652916414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.22470652916414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.22470652916414 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.12358350511122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.12358350511122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.12358350511122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.12358350511122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.12358350511122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.12358350511122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.12358350511122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.12358350511122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.12358350511122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.12358350511122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12358350511122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12358350511122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12358350511122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.12358350511122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.12358350511122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.12358350511122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.12358350511122 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.07302199308477 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.07302199308477 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.07302199308477 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.07302199308477 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.07302199308477 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.07302199308477 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.07302199308477 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.07302199308477 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.07302199308477 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.07302199308477 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.07302199308477 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.07302199308477 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.07302199308477 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.07302199308477 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.07302199308477 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.07302199308477 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.07302199308477 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.04774123707154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.04774123707154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.04774123707154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.04774123707154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.04774123707154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.04774123707154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.04774123707154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.04774123707154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.04774123707154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.04774123707154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.04774123707154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.04774123707154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.04774123707154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.04774123707154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.04774123707154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.04774123707154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.04774123707154 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02246048105831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.02246048105831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02246048105831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02246048105831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02246048105831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02246048105831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02246048105831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02246048105831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02246048105831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02246048105831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02246048105831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02246048105831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02246048105831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02246048105831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02246048105831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02246048105831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02246048105831 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.1316533016277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.1316533016277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.1316533016277 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.1316533016277 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24481863179047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.24481863179047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.24481863179047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.24481863179047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.24481863179047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.24481863179047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.24481863179047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.24481863179047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.24481863179047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.24481863179047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24481863179047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.24481863179047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.24481863179047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.24481863179047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.24481863179047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.24481863179047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.24481863179047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.18823596670908 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.18823596670908 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.18823596670908 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.18823596670908 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.18823596670908 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.18823596670908 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.18823596670908 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.18823596670908 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.18823596670908 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.18823596670908 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.18823596670908 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.18823596670908 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.18823596670908 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.18823596670908 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.18823596670908 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.18823596670908 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.18823596670908 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15994463416839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.15994463416839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.15994463416839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.15994463416839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.15994463416839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.15994463416839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.15994463416839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.15994463416839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.15994463416839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.15994463416839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.15994463416839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.15994463416839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.15994463416839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.15994463416839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.15994463416839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.15994463416839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.15994463416839 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.14579896789804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.14579896789804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.14579896789804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.14579896789804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.14579896789804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.14579896789804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.14579896789804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.14579896789804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.14579896789804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.14579896789804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.14579896789804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.14579896789804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.14579896789804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.14579896789804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.14579896789804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.14579896789804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.14579896789804 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1316533016277 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.1316533016277 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.1316533016277 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.1316533016277 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.1316533016277 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.1316533016277 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.1316533016277 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.1316533016277 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.1316533016277 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.1316533016277 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1316533016277 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.1316533016277 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.1316533016277 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.1316533016277 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.1316533016277 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.1316533016277 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.1316533016277 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.44256462978066 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.44256462978066 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.44256462978066 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.44256462978066 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.19830816680259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.19830816680259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.19830816680259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.19830816680259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.19830816680259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.19830816680259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.19830816680259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.19830816680259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.19830816680259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.19830816680259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.19830816680259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.19830816680259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.19830816680259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.19830816680259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.19830816680259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.19830816680259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.19830816680259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32043639829163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.32043639829163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.32043639829163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.32043639829163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.32043639829163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.32043639829163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.32043639829163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32043639829163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32043639829163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32043639829163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32043639829163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32043639829163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32043639829163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32043639829163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32043639829163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32043639829163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32043639829163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38150051403614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.38150051403614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.38150051403614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.38150051403614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.38150051403614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.38150051403614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.38150051403614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.38150051403614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.38150051403614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.38150051403614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.38150051403614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.38150051403614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.38150051403614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.38150051403614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.38150051403614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.38150051403614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.38150051403614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.4120325719084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.4120325719084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.4120325719084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.4120325719084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.4120325719084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.4120325719084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.4120325719084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.4120325719084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.4120325719084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.4120325719084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.4120325719084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.4120325719084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.4120325719084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.4120325719084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.4120325719084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.4120325719084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.4120325719084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44256462978066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.44256462978066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.44256462978066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.44256462978066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.44256462978066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.44256462978066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.44256462978066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.44256462978066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.44256462978066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.44256462978066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.44256462978066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.44256462978066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.44256462978066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.44256462978066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.44256462978066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.44256462978066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.44256462978066 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.60989346680756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.60989346680756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.60989346680756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.60989346680756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.4489041201268 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.4489041201268 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.4489041201268 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.4489041201268 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.4489041201268 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.4489041201268 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.4489041201268 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.4489041201268 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.4489041201268 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.4489041201268 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.4489041201268 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.4489041201268 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.4489041201268 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.4489041201268 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.4489041201268 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.4489041201268 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.4489041201268 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52939879346718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.52939879346718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52939879346718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52939879346718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52939879346718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52939879346718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52939879346718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52939879346718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52939879346718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52939879346718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52939879346718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52939879346718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52939879346718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52939879346718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52939879346718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52939879346718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52939879346718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.56964613013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.56964613013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.56964613013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.56964613013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.56964613013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.56964613013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.56964613013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.56964613013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.56964613013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.56964613013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.56964613013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.56964613013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.56964613013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.56964613013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.56964613013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.56964613013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.56964613013737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.58976979847247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.58976979847247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.58976979847247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.58976979847247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.58976979847247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.58976979847247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.58976979847247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.58976979847247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.58976979847247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.58976979847247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.58976979847247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.58976979847247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.58976979847247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.58976979847247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.58976979847247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.58976979847247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.58976979847247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.60989346680756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.60989346680756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.60989346680756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.60989346680756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.60989346680756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.60989346680756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.60989346680756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.60989346680756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.60989346680756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.60989346680756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.60989346680756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.60989346680756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.60989346680756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.60989346680756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.60989346680756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.60989346680756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.60989346680756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34218793912762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34218793912762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34218793912762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34218793912762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.10796914521485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.10796914521485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.10796914521485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.10796914521485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.10796914521485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.10796914521485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.10796914521485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.10796914521485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.10796914521485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.10796914521485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.10796914521485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.10796914521485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.10796914521485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.10796914521485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.10796914521485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.10796914521485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.10796914521485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.22507854217123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.22507854217123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.22507854217123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.22507854217123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.22507854217123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.22507854217123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.22507854217123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.22507854217123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.22507854217123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.22507854217123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.22507854217123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.22507854217123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.22507854217123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.22507854217123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.22507854217123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.22507854217123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.22507854217123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28363324064942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.28363324064942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28363324064942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28363324064942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.28363324064942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28363324064942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28363324064942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28363324064942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28363324064942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28363324064942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28363324064942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28363324064942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28363324064942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28363324064942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28363324064942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28363324064942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28363324064942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.31291058988852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.31291058988852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.31291058988852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.31291058988852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.31291058988852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.31291058988852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.31291058988852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.31291058988852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.31291058988852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.31291058988852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.31291058988852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.31291058988852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.31291058988852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.31291058988852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.31291058988852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.31291058988852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.31291058988852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34218793912762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.34218793912762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34218793912762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34218793912762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34218793912762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34218793912762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34218793912762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34218793912762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34218793912762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34218793912762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34218793912762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34218793912762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34218793912762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34218793912762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34218793912762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34218793912762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34218793912762 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357688338776397 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357688338776397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357688338776397 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357688338776397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321919504898757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.339803921837577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.348746130306987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353217234541692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357688338776397 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23771038108595 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23771038108595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23771038108595 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23771038108595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.213939342977355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.225824862031653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231767621558801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.234739001322376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.23771038108595 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145222459909121 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145222459909121 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145222459909121 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145222459909121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.159744705900033 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.152483582904577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148853021406849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147037740657985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145222459909121 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145222459909121 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.491314131046478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.491314131046478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.491314131046478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.491314131046478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44218271794183 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.44218271794183 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.44218271794183 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.44218271794183 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.44218271794183 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.44218271794183 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.44218271794183 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.44218271794183 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.44218271794183 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.44218271794183 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44218271794183 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44218271794183 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44218271794183 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44218271794183 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44218271794183 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44218271794183 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44218271794183 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.466748424494154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.466748424494154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.466748424494154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.466748424494154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.466748424494154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.466748424494154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.466748424494154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.466748424494154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.466748424494154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.466748424494154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.466748424494154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.466748424494154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.466748424494154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.466748424494154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.466748424494154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.466748424494154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.466748424494154 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.479031277770316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.479031277770316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.479031277770316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.479031277770316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.479031277770316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.479031277770316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.479031277770316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.479031277770316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.479031277770316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.479031277770316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.479031277770316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.479031277770316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.479031277770316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.479031277770316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.479031277770316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.479031277770316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.479031277770316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485172704408397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.485172704408397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.485172704408397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.485172704408397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.485172704408397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.485172704408397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.485172704408397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.485172704408397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.485172704408397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.485172704408397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.485172704408397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.485172704408397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.485172704408397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.485172704408397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.485172704408397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.485172704408397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.485172704408397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.491314131046478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.491314131046478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.491314131046478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.491314131046478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.491314131046478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.491314131046478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.491314131046478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.491314131046478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.491314131046478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.491314131046478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.491314131046478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.491314131046478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.491314131046478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.491314131046478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.491314131046478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.491314131046478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.491314131046478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.225782871116991 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.225782871116991 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.225782871116991 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.225782871116991 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.24836115822869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.24836115822869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.24836115822869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.24836115822869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.24836115822869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.24836115822869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.24836115822869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.24836115822869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.24836115822869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.24836115822869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.24836115822869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.24836115822869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.24836115822869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.24836115822869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.24836115822869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.24836115822869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.24836115822869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23707201467284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.23707201467284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.23707201467284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.23707201467284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.23707201467284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.23707201467284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.23707201467284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.23707201467284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.23707201467284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.23707201467284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.23707201467284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.23707201467284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23707201467284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.23707201467284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.23707201467284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.23707201467284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.23707201467284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231427442894916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231427442894916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231427442894916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231427442894916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231427442894916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231427442894916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231427442894916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231427442894916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231427442894916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231427442894916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231427442894916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231427442894916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231427442894916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231427442894916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231427442894916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231427442894916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.231427442894916 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.228605157005953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.228605157005953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.228605157005953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.228605157005953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.228605157005953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.228605157005953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.228605157005953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.228605157005953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.228605157005953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.228605157005953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.228605157005953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.228605157005953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.228605157005953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.228605157005953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.228605157005953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.228605157005953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.228605157005953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.225782871116991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.225782871116991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.225782871116991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.225782871116991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.225782871116991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.225782871116991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.225782871116991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.225782871116991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.225782871116991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.225782871116991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.225782871116991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.225782871116991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.225782871116991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.225782871116991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.225782871116991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.225782871116991 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.225782871116991 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16630121454803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16630121454803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16630121454803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16630121454803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04967109309323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.04967109309323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.04967109309323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.04967109309323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.04967109309323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.04967109309323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.04967109309323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.04967109309323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.04967109309323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.04967109309323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.04967109309323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.04967109309323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.04967109309323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04967109309323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.04967109309323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.04967109309323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.04967109309323 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10798615382063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.10798615382063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.10798615382063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.10798615382063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.10798615382063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.10798615382063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10798615382063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10798615382063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10798615382063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10798615382063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10798615382063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10798615382063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10798615382063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10798615382063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10798615382063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10798615382063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10798615382063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13714368418433 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13714368418433 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13714368418433 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13714368418433 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13714368418433 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13714368418433 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13714368418433 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13714368418433 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13714368418433 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13714368418433 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13714368418433 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13714368418433 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13714368418433 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13714368418433 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13714368418433 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13714368418433 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13714368418433 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15172244936618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.15172244936618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.15172244936618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.15172244936618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.15172244936618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.15172244936618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.15172244936618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.15172244936618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15172244936618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15172244936618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15172244936618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15172244936618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15172244936618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15172244936618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15172244936618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.15172244936618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.15172244936618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16630121454803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.16630121454803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.16630121454803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.16630121454803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.16630121454803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.16630121454803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.16630121454803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.16630121454803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16630121454803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16630121454803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16630121454803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16630121454803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16630121454803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16630121454803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16630121454803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16630121454803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16630121454803 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48278044945345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48278044945345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48278044945345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48278044945345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6310584943988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6310584943988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6310584943988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6310584943988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6310584943988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6310584943988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6310584943988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6310584943988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6310584943988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6310584943988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6310584943988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6310584943988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6310584943988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6310584943988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6310584943988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.6310584943988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.6310584943988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.55691947192612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.55691947192612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.55691947192612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.55691947192612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.55691947192612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.55691947192612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.55691947192612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.55691947192612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.55691947192612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.55691947192612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.55691947192612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.55691947192612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.55691947192612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.55691947192612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.55691947192612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.55691947192612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.55691947192612 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51984996068979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.51984996068979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.51984996068979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.51984996068979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.51984996068979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.51984996068979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51984996068979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51984996068979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51984996068979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51984996068979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51984996068979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51984996068979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51984996068979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51984996068979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51984996068979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51984996068979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51984996068979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.50131520507162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.50131520507162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.50131520507162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.50131520507162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.50131520507162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.50131520507162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.50131520507162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.50131520507162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.50131520507162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.50131520507162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.50131520507162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.50131520507162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.50131520507162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.50131520507162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.50131520507162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.50131520507162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.50131520507162 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48278044945345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.48278044945345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.48278044945345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48278044945345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48278044945345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48278044945345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48278044945345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48278044945345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48278044945345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48278044945345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48278044945345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48278044945345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48278044945345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48278044945345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48278044945345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48278044945345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48278044945345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01723241135871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01723241135871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01723241135871 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01723241135871 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.11895565249458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.11895565249458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.11895565249458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.11895565249458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.11895565249458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.11895565249458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.11895565249458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.11895565249458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.11895565249458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.11895565249458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.11895565249458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.11895565249458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.11895565249458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.11895565249458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.11895565249458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.11895565249458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.11895565249458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.06809403192664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.06809403192664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.06809403192664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.06809403192664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.06809403192664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.06809403192664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.06809403192664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.06809403192664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.06809403192664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.06809403192664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.06809403192664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.06809403192664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.06809403192664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.06809403192664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.06809403192664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.06809403192664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.06809403192664 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04266322164268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.04266322164268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.04266322164268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.04266322164268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.04266322164268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.04266322164268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.04266322164268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.04266322164268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04266322164268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04266322164268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04266322164268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04266322164268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04266322164268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04266322164268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04266322164268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04266322164268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.04266322164268 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.02994781650069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.02994781650069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.02994781650069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.02994781650069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.02994781650069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.02994781650069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.02994781650069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.02994781650069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.02994781650069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.02994781650069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.02994781650069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.02994781650069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.02994781650069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.02994781650069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.02994781650069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.02994781650069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.02994781650069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01723241135871 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01723241135871 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01723241135871 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01723241135871 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01723241135871 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01723241135871 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01723241135871 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01723241135871 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01723241135871 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01723241135871 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01723241135871 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01723241135871 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01723241135871 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01723241135871 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01723241135871 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01723241135871 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01723241135871 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.13404028744123 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.13404028744123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.13404028744123 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.13404028744123 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24744431618536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24744431618536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.24744431618536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.24744431618536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.24744431618536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.24744431618536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.24744431618536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.24744431618536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.24744431618536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.24744431618536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.24744431618536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.24744431618536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.24744431618536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.24744431618536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.24744431618536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.24744431618536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.24744431618536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.24744431618536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1907423018133 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1907423018133 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.1907423018133 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.1907423018133 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.1907423018133 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.1907423018133 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.1907423018133 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.1907423018133 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.1907423018133 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.1907423018133 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.1907423018133 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.1907423018133 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1907423018133 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.1907423018133 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.1907423018133 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.1907423018133 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.1907423018133 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.1907423018133 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16239129462726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16239129462726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.16239129462726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.16239129462726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.16239129462726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.16239129462726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.16239129462726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.16239129462726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.16239129462726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.16239129462726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.16239129462726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.16239129462726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.16239129462726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.16239129462726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.16239129462726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.16239129462726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.16239129462726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.16239129462726 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.14821579103425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.14821579103425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.14821579103425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.14821579103425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.14821579103425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.14821579103425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.14821579103425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.14821579103425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.14821579103425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.14821579103425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.14821579103425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.14821579103425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.14821579103425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.14821579103425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.14821579103425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.14821579103425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.14821579103425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.14821579103425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.13404028744123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.13404028744123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.13404028744123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.13404028744123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.13404028744123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.13404028744123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.13404028744123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.13404028744123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.13404028744123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.13404028744123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.13404028744123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.13404028744123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.13404028744123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.13404028744123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.13404028744123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.13404028744123 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28629111535336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28629111535336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28629111535336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28629111535336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41492022688869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41492022688869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.41492022688869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.41492022688869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.41492022688869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.41492022688869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.41492022688869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.41492022688869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.41492022688869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41492022688869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41492022688869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41492022688869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41492022688869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41492022688869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41492022688869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41492022688869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41492022688869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41492022688869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35060567112102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35060567112102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.35060567112102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.35060567112102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.35060567112102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.35060567112102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.35060567112102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.35060567112102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.35060567112102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.35060567112102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.35060567112102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.35060567112102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35060567112102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35060567112102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35060567112102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.35060567112102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.35060567112102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.35060567112102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31844839323719 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31844839323719 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.31844839323719 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31844839323719 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31844839323719 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31844839323719 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31844839323719 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31844839323719 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31844839323719 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31844839323719 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31844839323719 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31844839323719 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31844839323719 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31844839323719 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31844839323719 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31844839323719 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31844839323719 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31844839323719 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.30236975429527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.30236975429527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.30236975429527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.30236975429527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.30236975429527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.30236975429527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.30236975429527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.30236975429527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.30236975429527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.30236975429527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.30236975429527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.30236975429527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.30236975429527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.30236975429527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.30236975429527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.30236975429527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.30236975429527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.30236975429527 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.28629111535336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.28629111535336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.28629111535336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.28629111535336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.28629111535336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.28629111535336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.28629111535336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.28629111535336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28629111535336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28629111535336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28629111535336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28629111535336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28629111535336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28629111535336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28629111535336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28629111535336 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.36308329285703 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.36308329285703 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.36308329285703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.36308329285703 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49939162214273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.49939162214273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.49939162214273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.49939162214273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.49939162214273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.49939162214273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.49939162214273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.49939162214273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.49939162214273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.49939162214273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.49939162214273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49939162214273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.49939162214273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49939162214273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.49939162214273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.49939162214273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.49939162214273 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.43123745749988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.43123745749988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.43123745749988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.43123745749988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.43123745749988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.43123745749988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.43123745749988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.43123745749988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.43123745749988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.43123745749988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.43123745749988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.43123745749988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.43123745749988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.43123745749988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.43123745749988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.43123745749988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.43123745749988 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.39716037517845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.39716037517845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.39716037517845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.39716037517845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.39716037517845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.39716037517845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.39716037517845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.39716037517845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.39716037517845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.39716037517845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.39716037517845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.39716037517845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.39716037517845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.39716037517845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.39716037517845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.39716037517845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.39716037517845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38012183401774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.38012183401774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.38012183401774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.38012183401774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.38012183401774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.38012183401774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.38012183401774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.38012183401774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.38012183401774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38012183401774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38012183401774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38012183401774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38012183401774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38012183401774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38012183401774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38012183401774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38012183401774 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36308329285703 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.36308329285703 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.36308329285703 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.36308329285703 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.36308329285703 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36308329285703 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36308329285703 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36308329285703 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36308329285703 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36308329285703 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36308329285703 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36308329285703 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36308329285703 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36308329285703 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36308329285703 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36308329285703 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.36308329285703 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.86818174272332 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.86818174272332 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.86818174272332 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.86818174272332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.954999916995652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.954999916995652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.954999916995652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.954999916995652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.954999916995652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.954999916995652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.954999916995652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.954999916995652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.954999916995652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.954999916995652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.954999916995652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.954999916995652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.954999916995652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.954999916995652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.954999916995652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.954999916995652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.954999916995652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.911590829859486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.911590829859486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.911590829859486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.911590829859486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.911590829859486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.911590829859486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.911590829859486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.911590829859486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.911590829859486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.911590829859486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.911590829859486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.911590829859486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.911590829859486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.911590829859486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.911590829859486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.911590829859486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.911590829859486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.889886286291403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.889886286291403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.889886286291403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.889886286291403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.889886286291403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.889886286291403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.889886286291403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.889886286291403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.889886286291403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.889886286291403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.889886286291403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.889886286291403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.889886286291403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.889886286291403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.889886286291403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.889886286291403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.889886286291403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.879034014507361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.879034014507361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.879034014507361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.879034014507361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.879034014507361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.879034014507361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.879034014507361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.879034014507361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.879034014507361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.879034014507361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.879034014507361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.879034014507361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.879034014507361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.879034014507361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.879034014507361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.879034014507361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.879034014507361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.86818174272332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.86818174272332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.86818174272332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.86818174272332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.86818174272332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.86818174272332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.86818174272332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.86818174272332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.86818174272332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.86818174272332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.86818174272332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.86818174272332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.86818174272332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.86818174272332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.86818174272332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.86818174272332 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.86818174272332 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47539530500058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47539530500058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47539530500058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47539530500058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32785577450052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.32785577450052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.32785577450052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.32785577450052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.32785577450052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.32785577450052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.32785577450052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.32785577450052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.32785577450052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.32785577450052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.32785577450052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.32785577450052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.32785577450052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32785577450052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.32785577450052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.32785577450052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.32785577450052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40162553975055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.40162553975055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.40162553975055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.40162553975055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.40162553975055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.40162553975055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.40162553975055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.40162553975055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40162553975055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40162553975055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40162553975055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40162553975055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40162553975055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40162553975055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40162553975055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40162553975055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40162553975055 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43851042237556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.43851042237556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.43851042237556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.43851042237556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.43851042237556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.43851042237556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.43851042237556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.43851042237556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.43851042237556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.43851042237556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.43851042237556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.43851042237556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.43851042237556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43851042237556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.43851042237556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.43851042237556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.43851042237556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.45695286368807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.45695286368807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.45695286368807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.45695286368807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.45695286368807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.45695286368807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.45695286368807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.45695286368807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.45695286368807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.45695286368807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.45695286368807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.45695286368807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.45695286368807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.45695286368807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.45695286368807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.45695286368807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.45695286368807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47539530500058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.47539530500058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.47539530500058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.47539530500058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.47539530500058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.47539530500058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.47539530500058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.47539530500058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47539530500058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47539530500058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47539530500058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47539530500058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47539530500058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47539530500058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47539530500058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47539530500058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47539530500058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36451601270514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36451601270514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36451601270514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36451601270514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22806441143463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.22806441143463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.22806441143463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.22806441143463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.22806441143463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.22806441143463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22806441143463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.22806441143463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22806441143463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22806441143463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22806441143463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22806441143463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22806441143463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22806441143463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22806441143463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22806441143463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22806441143463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29629021206989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.29629021206989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.29629021206989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.29629021206989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.29629021206989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.29629021206989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.29629021206989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.29629021206989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.29629021206989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.29629021206989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.29629021206989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.29629021206989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.29629021206989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29629021206989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.29629021206989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.29629021206989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.29629021206989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33040311238752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.33040311238752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.33040311238752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.33040311238752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.33040311238752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.33040311238752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.33040311238752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.33040311238752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.33040311238752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.33040311238752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.33040311238752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.33040311238752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.33040311238752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33040311238752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.33040311238752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.33040311238752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.33040311238752 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34745956254633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.34745956254633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.34745956254633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.34745956254633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.34745956254633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.34745956254633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.34745956254633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34745956254633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34745956254633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34745956254633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34745956254633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34745956254633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34745956254633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34745956254633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34745956254633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34745956254633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34745956254633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36451601270514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.36451601270514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.36451601270514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36451601270514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36451601270514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36451601270514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36451601270514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.36451601270514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.36451601270514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36451601270514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36451601270514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36451601270514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36451601270514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36451601270514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36451601270514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36451601270514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36451601270514 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0616601919162949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0616601919162949 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0616601919162949 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0616601919162949 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0554941727246654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0554941727246654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0554941727246654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0554941727246654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0554941727246654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0554941727246654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0554941727246654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0554941727246654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0554941727246654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0554941727246654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0554941727246654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0554941727246654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0554941727246654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0554941727246654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0554941727246654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0554941727246654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0554941727246654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0585771823204802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0585771823204802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0585771823204802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0585771823204802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0585771823204802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0585771823204802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0585771823204802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0585771823204802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0585771823204802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0585771823204802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0585771823204802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0585771823204802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0585771823204802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0585771823204802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0585771823204802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0585771823204802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0585771823204802 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0601186871183875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0601186871183875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0601186871183875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0601186871183875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0601186871183875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0601186871183875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0601186871183875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0601186871183875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0601186871183875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0601186871183875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0601186871183875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0601186871183875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0601186871183875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0601186871183875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0601186871183875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0601186871183875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0601186871183875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0608894395173412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0608894395173412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0608894395173412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0608894395173412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0608894395173412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0608894395173412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0608894395173412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0608894395173412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0608894395173412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0608894395173412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0608894395173412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0608894395173412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0608894395173412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0608894395173412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0608894395173412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0608894395173412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0608894395173412 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0616601919162949 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0616601919162949 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0616601919162949 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0616601919162949 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0616601919162949 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0616601919162949 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0616601919162949 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0616601919162949 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0616601919162949 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0616601919162949 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0616601919162949 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0616601919162949 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0616601919162949 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0616601919162949 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0616601919162949 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0616601919162949 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0616601919162949 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.398109705569606 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.398109705569606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.398109705569606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.398109705569606 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358298735012645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.358298735012645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.358298735012645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.358298735012645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.358298735012645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.358298735012645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.358298735012645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.358298735012645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.358298735012645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.358298735012645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358298735012645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358298735012645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358298735012645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358298735012645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358298735012645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.358298735012645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.358298735012645 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378204220291126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.378204220291126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.378204220291126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.378204220291126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.378204220291126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.378204220291126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.378204220291126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.378204220291126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.378204220291126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.378204220291126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.378204220291126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.378204220291126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.378204220291126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.378204220291126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.378204220291126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.378204220291126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.378204220291126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388156962930366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.388156962930366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.388156962930366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.388156962930366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.388156962930366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.388156962930366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.388156962930366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.388156962930366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.388156962930366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.388156962930366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.388156962930366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.388156962930366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.388156962930366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.388156962930366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.388156962930366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.388156962930366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.388156962930366 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393133334249986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.393133334249986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.393133334249986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.393133334249986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.393133334249986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.393133334249986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.393133334249986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.393133334249986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.393133334249986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.393133334249986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.393133334249986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.393133334249986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393133334249986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.393133334249986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.393133334249986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.393133334249986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.393133334249986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398109705569606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.398109705569606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.398109705569606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.398109705569606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.398109705569606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.398109705569606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.398109705569606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.398109705569606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.398109705569606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.398109705569606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.398109705569606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.398109705569606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398109705569606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.398109705569606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.398109705569606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.398109705569606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.398109705569606 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367629606203653 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367629606203653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367629606203653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367629606203653 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.330866645583287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.330866645583287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.330866645583287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.330866645583287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.330866645583287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.330866645583287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.330866645583287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.330866645583287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.330866645583287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.330866645583287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.330866645583287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.330866645583287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.330866645583287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.330866645583287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.330866645583287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.330866645583287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.330866645583287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.34924812589347 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.34924812589347 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.34924812589347 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.34924812589347 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.34924812589347 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.34924812589347 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.34924812589347 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.34924812589347 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.34924812589347 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.34924812589347 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.34924812589347 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.34924812589347 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.34924812589347 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.34924812589347 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.34924812589347 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.34924812589347 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.34924812589347 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358438866048561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.358438866048561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.358438866048561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.358438866048561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.358438866048561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.358438866048561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.358438866048561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.358438866048561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.358438866048561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.358438866048561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358438866048561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358438866048561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358438866048561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358438866048561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358438866048561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.358438866048561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.358438866048561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363034236126107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.363034236126107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.363034236126107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.363034236126107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.363034236126107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.363034236126107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.363034236126107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.363034236126107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.363034236126107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.363034236126107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363034236126107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363034236126107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363034236126107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363034236126107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363034236126107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363034236126107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363034236126107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367629606203653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.367629606203653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.367629606203653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.367629606203653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.367629606203653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.367629606203653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.367629606203653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.367629606203653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367629606203653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367629606203653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367629606203653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367629606203653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367629606203653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367629606203653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367629606203653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367629606203653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367629606203653 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.321127284166287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.321127284166287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.321127284166287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.321127284166287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.353240012582915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.353240012582915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.353240012582915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.353240012582915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.353240012582915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.353240012582915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.353240012582915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.353240012582915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.353240012582915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.353240012582915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.353240012582915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.353240012582915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.353240012582915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.353240012582915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.353240012582915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.353240012582915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.353240012582915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337183648374601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.337183648374601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.337183648374601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.337183648374601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.337183648374601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.337183648374601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.337183648374601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.337183648374601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.337183648374601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.337183648374601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.337183648374601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.337183648374601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337183648374601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337183648374601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.337183648374601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.337183648374601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.337183648374601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329155466270444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.329155466270444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.329155466270444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.329155466270444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.329155466270444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.329155466270444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.329155466270444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.329155466270444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.329155466270444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329155466270444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329155466270444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329155466270444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329155466270444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329155466270444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329155466270444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329155466270444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329155466270444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325141375218365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.325141375218365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.325141375218365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.325141375218365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.325141375218365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.325141375218365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.325141375218365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325141375218365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325141375218365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325141375218365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325141375218365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325141375218365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325141375218365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325141375218365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325141375218365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325141375218365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325141375218365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321127284166287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.321127284166287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.321127284166287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.321127284166287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.321127284166287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.321127284166287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.321127284166287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.321127284166287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.321127284166287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.321127284166287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.321127284166287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.321127284166287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321127284166287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.321127284166287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.321127284166287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.321127284166287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.321127284166287 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.37048596459979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.37048596459979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.37048596459979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.37048596459979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333437368139811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.333437368139811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.333437368139811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.333437368139811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.333437368139811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.333437368139811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.333437368139811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.333437368139811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.333437368139811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.333437368139811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333437368139811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333437368139811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333437368139811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333437368139811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333437368139811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333437368139811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333437368139811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3519616663698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.3519616663698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.3519616663698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.3519616663698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.3519616663698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.3519616663698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.3519616663698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.3519616663698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.3519616663698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.3519616663698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.3519616663698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.3519616663698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3519616663698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.3519616663698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.3519616663698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.3519616663698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.3519616663698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.361223815484795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.361223815484795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.361223815484795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.361223815484795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.361223815484795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.361223815484795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.361223815484795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.361223815484795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.361223815484795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.361223815484795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.361223815484795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.361223815484795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.361223815484795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.361223815484795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.361223815484795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.361223815484795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.361223815484795 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365854890042292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365854890042292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365854890042292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365854890042292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365854890042292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365854890042292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365854890042292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365854890042292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365854890042292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365854890042292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365854890042292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365854890042292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365854890042292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365854890042292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365854890042292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365854890042292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365854890042292 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37048596459979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.37048596459979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.37048596459979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.37048596459979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.37048596459979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.37048596459979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.37048596459979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.37048596459979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.37048596459979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.37048596459979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.37048596459979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.37048596459979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37048596459979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.37048596459979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.37048596459979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.37048596459979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.37048596459979 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0236644785527503 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0236644785527503 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0236644785527503 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0236644785527503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0212980306974753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0212980306974753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0212980306974753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0212980306974753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0212980306974753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0212980306974753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0212980306974753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0212980306974753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0212980306974753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0212980306974753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0212980306974753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0212980306974753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0212980306974753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0212980306974753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0212980306974753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0212980306974753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0212980306974753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0224812546251128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0224812546251128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0224812546251128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0224812546251128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0224812546251128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0224812546251128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0224812546251128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0224812546251128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0224812546251128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0224812546251128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0224812546251128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0224812546251128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0224812546251128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0224812546251128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0224812546251128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0224812546251128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0224812546251128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0230728665889316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0230728665889316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0230728665889316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0230728665889316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0230728665889316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0230728665889316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0230728665889316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0230728665889316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0230728665889316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0230728665889316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0230728665889316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0230728665889316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0230728665889316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0230728665889316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0230728665889316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0230728665889316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0230728665889316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0233686725708409 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0233686725708409 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0233686725708409 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0233686725708409 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0233686725708409 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0233686725708409 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0233686725708409 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0233686725708409 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0233686725708409 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0233686725708409 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0233686725708409 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0233686725708409 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0233686725708409 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0233686725708409 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0233686725708409 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0233686725708409 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0233686725708409 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0236644785527503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0236644785527503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0236644785527503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0236644785527503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0236644785527503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0236644785527503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0236644785527503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0236644785527503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0236644785527503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0236644785527503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0236644785527503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0236644785527503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0236644785527503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0236644785527503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0236644785527503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0236644785527503 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0236644785527503 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.21198892721522 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.21198892721522 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.21198892721522 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.21198892721522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.53318781993674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.53318781993674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.53318781993674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.53318781993674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.53318781993674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.53318781993674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.53318781993674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.53318781993674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.53318781993674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.53318781993674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.53318781993674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.53318781993674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.53318781993674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.53318781993674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.53318781993674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.53318781993674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.53318781993674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.53318781993674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.37258837357598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.37258837357598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.37258837357598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.37258837357598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.37258837357598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.37258837357598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.37258837357598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.37258837357598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.37258837357598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.37258837357598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.37258837357598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.37258837357598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.37258837357598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.37258837357598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.37258837357598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.37258837357598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.37258837357598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.37258837357598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2922886503956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2922886503956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.2922886503956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.2922886503956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.2922886503956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.2922886503956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.2922886503956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.2922886503956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.2922886503956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.2922886503956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2922886503956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2922886503956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2922886503956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2922886503956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2922886503956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2922886503956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2922886503956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2922886503956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25213878880541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.25213878880541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.25213878880541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.25213878880541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.25213878880541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.25213878880541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.25213878880541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.25213878880541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.25213878880541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.25213878880541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.25213878880541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.25213878880541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.25213878880541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25213878880541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25213878880541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.25213878880541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.25213878880541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.25213878880541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21198892721522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21198892721522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.21198892721522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.21198892721522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.21198892721522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.21198892721522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.21198892721522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.21198892721522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.21198892721522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.21198892721522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21198892721522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.21198892721522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21198892721522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21198892721522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21198892721522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.21198892721522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.21198892721522 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.21198892721522 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0401511608223808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0401511608223808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0401511608223808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0401511608223808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0361360447401427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0381436027812618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0391473818018213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.039649271312101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0401511608223808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0401511608223808 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.46409524904589 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.46409524904589 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.46409524904589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.46409524904589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.71050477395048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.71050477395048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.71050477395048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.71050477395048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.71050477395048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.71050477395048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.71050477395048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.71050477395048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.71050477395048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.71050477395048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.71050477395048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.71050477395048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.71050477395048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.71050477395048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.71050477395048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.71050477395048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.71050477395048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.58730001149818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.58730001149818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.58730001149818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.58730001149818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.58730001149818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.58730001149818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.58730001149818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.58730001149818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.58730001149818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.58730001149818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.58730001149818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.58730001149818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.58730001149818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.58730001149818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.58730001149818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.58730001149818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.58730001149818 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.52569763027204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.52569763027204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.52569763027204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.52569763027204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.52569763027204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.52569763027204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.52569763027204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.52569763027204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.52569763027204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.52569763027204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.52569763027204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.52569763027204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.52569763027204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.52569763027204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.52569763027204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.52569763027204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.52569763027204 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.49489643965896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.49489643965896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.49489643965896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.49489643965896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.49489643965896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.49489643965896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.49489643965896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.49489643965896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.49489643965896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.49489643965896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.49489643965896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.49489643965896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.49489643965896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.49489643965896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.49489643965896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.49489643965896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.49489643965896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46409524904589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.46409524904589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.46409524904589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.46409524904589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.46409524904589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.46409524904589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.46409524904589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.46409524904589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.46409524904589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.46409524904589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46409524904589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.46409524904589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.46409524904589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.46409524904589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.46409524904589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.46409524904589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.46409524904589 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.7717709415202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.7717709415202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.7717709415202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.7717709415202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94894803567222 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.94894803567222 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.94894803567222 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.94894803567222 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.94894803567222 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.94894803567222 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.94894803567222 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.94894803567222 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.94894803567222 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.94894803567222 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.94894803567222 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.94894803567222 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.94894803567222 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.94894803567222 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.94894803567222 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.94894803567222 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.94894803567222 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.86035948859621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.86035948859621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.86035948859621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.86035948859621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.86035948859621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.86035948859621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.86035948859621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.86035948859621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.86035948859621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.86035948859621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.86035948859621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.86035948859621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.86035948859621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.86035948859621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.86035948859621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.86035948859621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.86035948859621 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.81606521505821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.81606521505821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.81606521505821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.81606521505821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.81606521505821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.81606521505821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.81606521505821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.81606521505821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.81606521505821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.81606521505821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.81606521505821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.81606521505821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.81606521505821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.81606521505821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.81606521505821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.81606521505821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.81606521505821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.79391807828921 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.79391807828921 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.79391807828921 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.79391807828921 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.79391807828921 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.79391807828921 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.79391807828921 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.79391807828921 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.79391807828921 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.79391807828921 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.79391807828921 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.79391807828921 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.79391807828921 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.79391807828921 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.79391807828921 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.79391807828921 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.79391807828921 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.7717709415202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.7717709415202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.7717709415202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.7717709415202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.7717709415202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.7717709415202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.7717709415202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.7717709415202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.7717709415202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.7717709415202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.7717709415202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.7717709415202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.7717709415202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.7717709415202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.7717709415202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.7717709415202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.7717709415202 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0210932521135203 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0210932521135203 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0210932521135203 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0210932521135203 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0232025773248723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0221479147191963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0216205834163583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0213569177649393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0210932521135203 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0210932521135203 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.403936822892756 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.403936822892756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.403936822892756 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.403936822892756 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36354314060348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.36354314060348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.36354314060348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.36354314060348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.36354314060348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.36354314060348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.36354314060348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.36354314060348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.36354314060348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.36354314060348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.36354314060348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.36354314060348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.36354314060348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36354314060348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.36354314060348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.36354314060348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.36354314060348 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383739981748118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.383739981748118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.383739981748118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.383739981748118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.383739981748118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.383739981748118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.383739981748118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.383739981748118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.383739981748118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.383739981748118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.383739981748118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.383739981748118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.383739981748118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.383739981748118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.383739981748118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.383739981748118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.383739981748118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393838402320437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.393838402320437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.393838402320437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.393838402320437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.393838402320437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.393838402320437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.393838402320437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.393838402320437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.393838402320437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.393838402320437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.393838402320437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.393838402320437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.393838402320437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393838402320437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.393838402320437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.393838402320437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.393838402320437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398887612606596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.398887612606596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.398887612606596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.398887612606596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.398887612606596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.398887612606596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.398887612606596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.398887612606596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.398887612606596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.398887612606596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.398887612606596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.398887612606596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.398887612606596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398887612606596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.398887612606596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.398887612606596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.398887612606596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403936822892756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.403936822892756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.403936822892756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.403936822892756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.403936822892756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.403936822892756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.403936822892756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.403936822892756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.403936822892756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.403936822892756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.403936822892756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.403936822892756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.403936822892756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403936822892756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.403936822892756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.403936822892756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.403936822892756 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.209608810257843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.209608810257843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.209608810257843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.209608810257843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188647929232058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.188647929232058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.188647929232058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.188647929232058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.188647929232058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.188647929232058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.188647929232058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.188647929232058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.188647929232058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188647929232058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188647929232058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188647929232058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188647929232058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188647929232058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188647929232058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188647929232058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188647929232058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19912836974495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.19912836974495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.19912836974495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.19912836974495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.19912836974495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.19912836974495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.19912836974495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.19912836974495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.19912836974495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.19912836974495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.19912836974495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.19912836974495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.19912836974495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.19912836974495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.19912836974495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.19912836974495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.19912836974495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204368590001396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.204368590001396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.204368590001396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.204368590001396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.204368590001396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.204368590001396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.204368590001396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.204368590001396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.204368590001396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.204368590001396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.204368590001396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.204368590001396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.204368590001396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.204368590001396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.204368590001396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.204368590001396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.204368590001396 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20698870012962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.20698870012962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.20698870012962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.20698870012962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.20698870012962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.20698870012962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.20698870012962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.20698870012962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.20698870012962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.20698870012962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20698870012962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20698870012962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20698870012962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20698870012962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20698870012962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20698870012962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20698870012962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209608810257843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.209608810257843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.209608810257843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.209608810257843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.209608810257843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.209608810257843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.209608810257843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.209608810257843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.209608810257843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.209608810257843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.209608810257843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.209608810257843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.209608810257843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209608810257843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.209608810257843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.209608810257843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.209608810257843 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.65769880430807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.65769880430807 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.65769880430807 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.65769880430807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.49192892387726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.49192892387726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.49192892387726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.49192892387726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.49192892387726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.49192892387726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.49192892387726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.49192892387726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.49192892387726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.49192892387726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.49192892387726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.49192892387726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.49192892387726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.49192892387726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.49192892387726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.49192892387726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.49192892387726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.57481386409267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.57481386409267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.57481386409267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.57481386409267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.57481386409267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.57481386409267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.57481386409267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.57481386409267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.57481386409267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.57481386409267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.57481386409267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.57481386409267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.57481386409267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.57481386409267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.57481386409267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.57481386409267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.57481386409267 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61625633420037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.61625633420037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.61625633420037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.61625633420037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.61625633420037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.61625633420037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.61625633420037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.61625633420037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.61625633420037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.61625633420037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.61625633420037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61625633420037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61625633420037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61625633420037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61625633420037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61625633420037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61625633420037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.63697756925422 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.63697756925422 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.63697756925422 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.63697756925422 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.63697756925422 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.63697756925422 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.63697756925422 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.63697756925422 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.63697756925422 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.63697756925422 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.63697756925422 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.63697756925422 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.63697756925422 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.63697756925422 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.63697756925422 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.63697756925422 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.63697756925422 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.65769880430807 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.65769880430807 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.65769880430807 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.65769880430807 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.65769880430807 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.65769880430807 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.65769880430807 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.65769880430807 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.65769880430807 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.65769880430807 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.65769880430807 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.65769880430807 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.65769880430807 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.65769880430807 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.65769880430807 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.65769880430807 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.65769880430807 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23994331431934 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23994331431934 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23994331431934 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23994331431934 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.01594898288741 -9.02948389892552e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.12794614860338 -3.97556633775472e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.18394473146136 -1.44860755716931e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.21194402289035 -1.85128166876612e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23994331431934 -8.92175661170625e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23994331431934 -8.92175661170625e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20228916480205 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20228916480205 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20228916480205 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20228916480205 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32251808128225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.32251808128225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32251808128225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32251808128225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32251808128225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32251808128225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32251808128225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32251808128225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32251808128225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32251808128225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32251808128225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32251808128225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32251808128225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32251808128225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32251808128225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32251808128225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32251808128225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.26240362304215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.26240362304215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.26240362304215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.26240362304215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.26240362304215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.26240362304215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.26240362304215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.26240362304215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.26240362304215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.26240362304215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.26240362304215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.26240362304215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.26240362304215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.26240362304215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.26240362304215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.26240362304215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.26240362304215 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.2323463939221 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.2323463939221 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.2323463939221 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.2323463939221 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.2323463939221 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.2323463939221 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.2323463939221 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.2323463939221 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.2323463939221 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.2323463939221 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.2323463939221 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.2323463939221 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.2323463939221 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.2323463939221 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.2323463939221 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.2323463939221 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.2323463939221 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.21731777936207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.21731777936207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.21731777936207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.21731777936207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.21731777936207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.21731777936207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.21731777936207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.21731777936207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.21731777936207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.21731777936207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.21731777936207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.21731777936207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.21731777936207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.21731777936207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.21731777936207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.21731777936207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.21731777936207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20228916480205 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.20228916480205 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.20228916480205 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.20228916480205 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.20228916480205 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.20228916480205 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.20228916480205 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.20228916480205 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.20228916480205 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.20228916480205 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20228916480205 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20228916480205 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20228916480205 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20228916480205 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20228916480205 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20228916480205 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20228916480205 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.870464457700557 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.870464457700557 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.870464457700557 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.870464457700557 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.957510903470613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.957510903470613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.957510903470613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.957510903470613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.957510903470613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.957510903470613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.957510903470613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.957510903470613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.957510903470613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.957510903470613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.957510903470613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.957510903470613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.957510903470613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.957510903470613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.957510903470613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.957510903470613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.957510903470613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.913987680585585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.913987680585585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.913987680585585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.913987680585585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.913987680585585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.913987680585585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.913987680585585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.913987680585585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.913987680585585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.913987680585585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.913987680585585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.913987680585585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.913987680585585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.913987680585585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.913987680585585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.913987680585585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.913987680585585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.892226069143071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.892226069143071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.892226069143071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.892226069143071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.892226069143071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.892226069143071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.892226069143071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.892226069143071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.892226069143071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.892226069143071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.892226069143071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.892226069143071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.892226069143071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.892226069143071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.892226069143071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.892226069143071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.892226069143071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.881345263421814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.881345263421814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.881345263421814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.881345263421814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.881345263421814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.881345263421814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.881345263421814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.881345263421814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.881345263421814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.881345263421814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.881345263421814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.881345263421814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.881345263421814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.881345263421814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.881345263421814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.881345263421814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.881345263421814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.870464457700557 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.870464457700557 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.870464457700557 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.870464457700557 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.870464457700557 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.870464457700557 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.870464457700557 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.870464457700557 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.870464457700557 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.870464457700557 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.870464457700557 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.870464457700557 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.870464457700557 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.870464457700557 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.870464457700557 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.870464457700557 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.870464457700557 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.454233991315432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.454233991315432 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.454233991315432 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.454233991315432 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.408810592183888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.408810592183888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.408810592183888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.408810592183888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.408810592183888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.408810592183888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.408810592183888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.408810592183888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.408810592183888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.408810592183888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.408810592183888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.408810592183888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.408810592183888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.408810592183888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.408810592183888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.408810592183888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.408810592183888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.43152229174966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.43152229174966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.43152229174966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.43152229174966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.43152229174966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.43152229174966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.43152229174966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.43152229174966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.43152229174966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.43152229174966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.43152229174966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.43152229174966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.43152229174966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.43152229174966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.43152229174966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.43152229174966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.43152229174966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442878141532546 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.442878141532546 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.442878141532546 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.442878141532546 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.442878141532546 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.442878141532546 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.442878141532546 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.442878141532546 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.442878141532546 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.442878141532546 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.442878141532546 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.442878141532546 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.442878141532546 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.442878141532546 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.442878141532546 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.442878141532546 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.442878141532546 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.448556066423989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.448556066423989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.448556066423989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.448556066423989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.448556066423989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.448556066423989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.448556066423989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.448556066423989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.448556066423989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.448556066423989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.448556066423989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.448556066423989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.448556066423989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.448556066423989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.448556066423989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.448556066423989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.448556066423989 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454233991315432 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.454233991315432 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.454233991315432 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.454233991315432 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.454233991315432 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.454233991315432 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.454233991315432 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.454233991315432 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.454233991315432 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.454233991315432 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.454233991315432 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.454233991315432 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.454233991315432 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454233991315432 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.454233991315432 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.454233991315432 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.454233991315432 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.16682176685398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.16682176685398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.16682176685398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.16682176685398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150139590168582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.150139590168582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.150139590168582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.150139590168582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.150139590168582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.150139590168582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.150139590168582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.150139590168582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.150139590168582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.150139590168582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.150139590168582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.150139590168582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.150139590168582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150139590168582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.150139590168582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.150139590168582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.150139590168582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158480678511281 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.158480678511281 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.158480678511281 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.158480678511281 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.158480678511281 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.158480678511281 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.158480678511281 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.158480678511281 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.158480678511281 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.158480678511281 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158480678511281 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158480678511281 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158480678511281 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158480678511281 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158480678511281 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158480678511281 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158480678511281 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16265122268263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.16265122268263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.16265122268263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.16265122268263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.16265122268263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.16265122268263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.16265122268263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.16265122268263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.16265122268263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.16265122268263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.16265122268263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.16265122268263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.16265122268263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16265122268263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.16265122268263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.16265122268263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.16265122268263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.164736494768305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.164736494768305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.164736494768305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.164736494768305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.164736494768305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.164736494768305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.164736494768305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.164736494768305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.164736494768305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.164736494768305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.164736494768305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.164736494768305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.164736494768305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.164736494768305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.164736494768305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.164736494768305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.164736494768305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16682176685398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.16682176685398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.16682176685398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.16682176685398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.16682176685398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.16682176685398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.16682176685398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.16682176685398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.16682176685398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.16682176685398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.16682176685398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.16682176685398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.16682176685398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16682176685398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.16682176685398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.16682176685398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.16682176685398 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32315055676344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32315055676344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32315055676344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32315055676344 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.45546561243979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38930808460162 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.35622932068253 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33968993872299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32315055676344 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32315055676344 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27678897333478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27678897333478 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27678897333478 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27678897333478 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1491100760013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1491100760013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.1491100760013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.1491100760013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.1491100760013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.1491100760013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.1491100760013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.1491100760013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1491100760013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1491100760013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1491100760013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1491100760013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1491100760013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1491100760013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1491100760013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1491100760013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1491100760013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1491100760013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21294952466804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21294952466804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21294952466804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21294952466804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21294952466804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21294952466804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21294952466804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21294952466804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21294952466804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21294952466804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21294952466804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21294952466804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21294952466804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21294952466804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21294952466804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21294952466804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21294952466804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21294952466804 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24486924900141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24486924900141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.24486924900141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.24486924900141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.24486924900141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.24486924900141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.24486924900141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.24486924900141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.24486924900141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.24486924900141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.24486924900141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.24486924900141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.24486924900141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.24486924900141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.24486924900141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24486924900141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.24486924900141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.24486924900141 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2608291111681 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2608291111681 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.2608291111681 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.2608291111681 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.2608291111681 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.2608291111681 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2608291111681 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2608291111681 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2608291111681 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2608291111681 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2608291111681 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2608291111681 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2608291111681 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2608291111681 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2608291111681 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2608291111681 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2608291111681 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.2608291111681 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.27678897333478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.27678897333478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.27678897333478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.27678897333478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.27678897333478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.27678897333478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27678897333478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27678897333478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27678897333478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27678897333478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27678897333478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27678897333478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27678897333478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27678897333478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27678897333478 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27678897333478 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44424880694799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44424880694799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44424880694799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44424880694799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29982392625319 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.29982392625319 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.29982392625319 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.29982392625319 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.29982392625319 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.29982392625319 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.29982392625319 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.29982392625319 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.29982392625319 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.29982392625319 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.29982392625319 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.29982392625319 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.29982392625319 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.29982392625319 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29982392625319 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.29982392625319 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.29982392625319 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.37203636660059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.37203636660059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.37203636660059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.37203636660059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.37203636660059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.37203636660059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.37203636660059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.37203636660059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.37203636660059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.37203636660059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.37203636660059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.37203636660059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.37203636660059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.37203636660059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.37203636660059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.37203636660059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.37203636660059 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40814258677429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.40814258677429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.40814258677429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.40814258677429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.40814258677429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.40814258677429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.40814258677429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.40814258677429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.40814258677429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40814258677429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40814258677429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40814258677429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40814258677429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40814258677429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40814258677429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40814258677429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40814258677429 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42619569686114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.42619569686114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.42619569686114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.42619569686114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.42619569686114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.42619569686114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.42619569686114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.42619569686114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.42619569686114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.42619569686114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.42619569686114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.42619569686114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.42619569686114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.42619569686114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42619569686114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.42619569686114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.42619569686114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44424880694799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.44424880694799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.44424880694799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.44424880694799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44424880694799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44424880694799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44424880694799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44424880694799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44424880694799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44424880694799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44424880694799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44424880694799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44424880694799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44424880694799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44424880694799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44424880694799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44424880694799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.58768235056704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.58768235056704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.58768235056704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.58768235056704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.528914115510336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.528914115510336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.528914115510336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.528914115510336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.528914115510336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.528914115510336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.528914115510336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.528914115510336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.528914115510336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.528914115510336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.528914115510336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.528914115510336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.528914115510336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.528914115510336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.528914115510336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.528914115510336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.528914115510336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558298233038688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.558298233038688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.558298233038688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.558298233038688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.558298233038688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.558298233038688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.558298233038688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.558298233038688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.558298233038688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.558298233038688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.558298233038688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.558298233038688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.558298233038688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.558298233038688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.558298233038688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.558298233038688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.558298233038688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.572990291802864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.572990291802864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.572990291802864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.572990291802864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.572990291802864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.572990291802864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.572990291802864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.572990291802864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.572990291802864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.572990291802864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.572990291802864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.572990291802864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.572990291802864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.572990291802864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.572990291802864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.572990291802864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.572990291802864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.580336321184952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.580336321184952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.580336321184952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.580336321184952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.580336321184952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.580336321184952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.580336321184952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.580336321184952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.580336321184952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.580336321184952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.580336321184952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.580336321184952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.580336321184952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.580336321184952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.580336321184952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.580336321184952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.580336321184952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.58768235056704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.58768235056704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.58768235056704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.58768235056704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.58768235056704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.58768235056704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.58768235056704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.58768235056704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.58768235056704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.58768235056704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.58768235056704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.58768235056704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.58768235056704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.58768235056704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.58768235056704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.58768235056704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.58768235056704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38324538064896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38324538064896 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38324538064896 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38324538064896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24492084258407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.24492084258407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.24492084258407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.24492084258407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.24492084258407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.24492084258407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.24492084258407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.24492084258407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.24492084258407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.24492084258407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.24492084258407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.24492084258407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.24492084258407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.24492084258407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24492084258407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.24492084258407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.24492084258407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31408311161651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.31408311161651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.31408311161651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.31408311161651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.31408311161651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.31408311161651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.31408311161651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.31408311161651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.31408311161651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.31408311161651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.31408311161651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.31408311161651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.31408311161651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.31408311161651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31408311161651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.31408311161651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.31408311161651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34866424613274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.34866424613274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.34866424613274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.34866424613274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.34866424613274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.34866424613274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.34866424613274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.34866424613274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34866424613274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34866424613274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34866424613274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34866424613274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34866424613274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34866424613274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34866424613274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34866424613274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34866424613274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36595481339085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.36595481339085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.36595481339085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.36595481339085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36595481339085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36595481339085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36595481339085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36595481339085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.36595481339085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.36595481339085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36595481339085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36595481339085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36595481339085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36595481339085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36595481339085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36595481339085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36595481339085 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38324538064896 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.38324538064896 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.38324538064896 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.38324538064896 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.38324538064896 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.38324538064896 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.38324538064896 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.38324538064896 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.38324538064896 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38324538064896 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38324538064896 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38324538064896 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38324538064896 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38324538064896 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38324538064896 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38324538064896 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38324538064896 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0259400513001831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0259400513001831 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0259400513001831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0259400513001831 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0233460461701648 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.024643048735174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0252915500176785 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0256158006589308 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0259400513001831 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0259400513001831 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.306251243664507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.306251243664507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.306251243664507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.306251243664507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.336876368030957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.336876368030957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.336876368030957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.336876368030957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.336876368030957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.336876368030957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.336876368030957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.336876368030957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.336876368030957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.336876368030957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.336876368030957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.336876368030957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.336876368030957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.336876368030957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.336876368030957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.336876368030957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.336876368030957 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321563805847732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.321563805847732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.321563805847732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.321563805847732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.321563805847732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.321563805847732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.321563805847732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.321563805847732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.321563805847732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.321563805847732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.321563805847732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.321563805847732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.321563805847732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.321563805847732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.321563805847732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.321563805847732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.321563805847732 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313907524756119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.313907524756119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.313907524756119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.313907524756119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.313907524756119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.313907524756119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.313907524756119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.313907524756119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.313907524756119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.313907524756119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.313907524756119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.313907524756119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.313907524756119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.313907524756119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313907524756119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.313907524756119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.313907524756119 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.310079384210313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.310079384210313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.310079384210313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.310079384210313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.310079384210313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.310079384210313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.310079384210313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.310079384210313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.310079384210313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.310079384210313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.310079384210313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.310079384210313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.310079384210313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.310079384210313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.310079384210313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.310079384210313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.310079384210313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306251243664507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.306251243664507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.306251243664507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.306251243664507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.306251243664507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.306251243664507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.306251243664507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.306251243664507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.306251243664507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.306251243664507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.306251243664507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.306251243664507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.306251243664507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.306251243664507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306251243664507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.306251243664507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.306251243664507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186864916140666 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186864916140666 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186864916140666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186864916140666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205551407754732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.205551407754732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.205551407754732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.205551407754732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.205551407754732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.205551407754732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.205551407754732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.205551407754732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.205551407754732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.205551407754732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.205551407754732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.205551407754732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.205551407754732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.205551407754732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205551407754732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.205551407754732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.205551407754732 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196208161947699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.196208161947699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.196208161947699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.196208161947699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.196208161947699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.196208161947699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.196208161947699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.196208161947699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.196208161947699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.196208161947699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.196208161947699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.196208161947699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.196208161947699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.196208161947699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196208161947699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.196208161947699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.196208161947699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191536539044182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.191536539044182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.191536539044182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.191536539044182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.191536539044182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.191536539044182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.191536539044182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.191536539044182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.191536539044182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.191536539044182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.191536539044182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191536539044182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191536539044182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191536539044182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191536539044182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191536539044182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191536539044182 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189200727592424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.189200727592424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.189200727592424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.189200727592424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.189200727592424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.189200727592424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.189200727592424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.189200727592424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189200727592424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189200727592424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189200727592424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189200727592424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189200727592424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189200727592424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189200727592424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189200727592424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189200727592424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186864916140666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.186864916140666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.186864916140666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.186864916140666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.186864916140666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.186864916140666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.186864916140666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.186864916140666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.186864916140666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.186864916140666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186864916140666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186864916140666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186864916140666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186864916140666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186864916140666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186864916140666 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186864916140666 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.98269422504416 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.98269422504416 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.98269422504416 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.98269422504416 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18096364754858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.18096364754858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.18096364754858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.18096364754858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.18096364754858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.18096364754858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.18096364754858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.18096364754858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.18096364754858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.18096364754858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18096364754858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18096364754858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18096364754858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18096364754858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18096364754858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18096364754858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18096364754858 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.08182893629637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.08182893629637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.08182893629637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.08182893629637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.08182893629637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.08182893629637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.08182893629637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.08182893629637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.08182893629637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.08182893629637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.08182893629637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.08182893629637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.08182893629637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.08182893629637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.08182893629637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.08182893629637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.08182893629637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.03226158067026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.03226158067026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.03226158067026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.03226158067026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.03226158067026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.03226158067026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.03226158067026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.03226158067026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.03226158067026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.03226158067026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.03226158067026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.03226158067026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.03226158067026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.03226158067026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.03226158067026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.03226158067026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.03226158067026 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.00747790285721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.00747790285721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.00747790285721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.00747790285721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.00747790285721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.00747790285721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.00747790285721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.00747790285721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.00747790285721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.00747790285721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.00747790285721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.00747790285721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.00747790285721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.00747790285721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.00747790285721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.00747790285721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.00747790285721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98269422504416 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.98269422504416 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.98269422504416 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.98269422504416 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.98269422504416 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.98269422504416 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.98269422504416 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.98269422504416 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.98269422504416 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.98269422504416 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.98269422504416 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.98269422504416 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.98269422504416 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.98269422504416 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.98269422504416 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.98269422504416 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.98269422504416 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6694553226404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6694553226404 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6694553226404 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6694553226404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.83640085490444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.83640085490444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.83640085490444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.83640085490444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.83640085490444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.83640085490444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.83640085490444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.83640085490444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.83640085490444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.83640085490444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.83640085490444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.83640085490444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.83640085490444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.83640085490444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.83640085490444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.83640085490444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.83640085490444 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.75292808877242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.75292808877242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.75292808877242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.75292808877242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.75292808877242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.75292808877242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.75292808877242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.75292808877242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.75292808877242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.75292808877242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.75292808877242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.75292808877242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.75292808877242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.75292808877242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.75292808877242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.75292808877242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.75292808877242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.71119170570641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.71119170570641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.71119170570641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.71119170570641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.71119170570641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.71119170570641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.71119170570641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.71119170570641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.71119170570641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.71119170570641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.71119170570641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.71119170570641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.71119170570641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.71119170570641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.71119170570641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.71119170570641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.71119170570641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.69032351417341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.69032351417341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.69032351417341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.69032351417341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.69032351417341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.69032351417341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.69032351417341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.69032351417341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.69032351417341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.69032351417341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.69032351417341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.69032351417341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.69032351417341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.69032351417341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.69032351417341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.69032351417341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.69032351417341 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6694553226404 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6694553226404 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6694553226404 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6694553226404 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6694553226404 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6694553226404 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6694553226404 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6694553226404 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6694553226404 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6694553226404 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6694553226404 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6694553226404 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6694553226404 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6694553226404 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6694553226404 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6694553226404 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6694553226404 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.07543986854145 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.07543986854145 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.07543986854145 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.07543986854145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.18298385539559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.18298385539559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.18298385539559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.18298385539559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.18298385539559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.18298385539559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.18298385539559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.18298385539559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.18298385539559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.18298385539559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.18298385539559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.18298385539559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.18298385539559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.18298385539559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.18298385539559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.18298385539559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.18298385539559 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.12921186196852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.12921186196852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.12921186196852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.12921186196852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.12921186196852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.12921186196852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.12921186196852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.12921186196852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.12921186196852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.12921186196852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.12921186196852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.12921186196852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.12921186196852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.12921186196852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.12921186196852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.12921186196852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.12921186196852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10232586525499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.10232586525499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.10232586525499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.10232586525499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.10232586525499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.10232586525499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.10232586525499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.10232586525499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.10232586525499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10232586525499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10232586525499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10232586525499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10232586525499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10232586525499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10232586525499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10232586525499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10232586525499 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.08888286689822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.08888286689822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.08888286689822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.08888286689822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.08888286689822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.08888286689822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.08888286689822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.08888286689822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.08888286689822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.08888286689822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.08888286689822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.08888286689822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.08888286689822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.08888286689822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.08888286689822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.08888286689822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.08888286689822 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07543986854145 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.07543986854145 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.07543986854145 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.07543986854145 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.07543986854145 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.07543986854145 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.07543986854145 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.07543986854145 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.07543986854145 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.07543986854145 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.07543986854145 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.07543986854145 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.07543986854145 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07543986854145 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.07543986854145 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.07543986854145 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.07543986854145 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.992497657354723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.992497657354723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.992497657354723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.992497657354723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09174742309019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.09174742309019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.09174742309019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.09174742309019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.09174742309019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.09174742309019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.09174742309019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.09174742309019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.09174742309019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.09174742309019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.09174742309019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09174742309019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09174742309019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09174742309019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09174742309019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09174742309019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09174742309019 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04212254022246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.04212254022246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.04212254022246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.04212254022246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.04212254022246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.04212254022246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.04212254022246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.04212254022246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.04212254022246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.04212254022246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04212254022246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04212254022246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04212254022246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04212254022246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04212254022246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04212254022246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04212254022246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01731009878859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.01731009878859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01731009878859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01731009878859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01731009878859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01731009878859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01731009878859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01731009878859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01731009878859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01731009878859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01731009878859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01731009878859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01731009878859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01731009878859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01731009878859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01731009878859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01731009878859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00490387807166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.00490387807166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.00490387807166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.00490387807166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.00490387807166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.00490387807166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.00490387807166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00490387807166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00490387807166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00490387807166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00490387807166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00490387807166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00490387807166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00490387807166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00490387807166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00490387807166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00490387807166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.992497657354723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.992497657354723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.992497657354723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.992497657354723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.992497657354723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.992497657354723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.992497657354723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.992497657354723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.992497657354723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.992497657354723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.992497657354723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.992497657354723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.992497657354723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.992497657354723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.992497657354723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.992497657354723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.992497657354723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31356372425985 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31356372425985 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31356372425985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31356372425985 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44492009668583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.44492009668583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.44492009668583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.44492009668583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.44492009668583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.44492009668583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.44492009668583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.44492009668583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.44492009668583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.44492009668583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.44492009668583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44492009668583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44492009668583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44492009668583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44492009668583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44492009668583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44492009668583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37924191047284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.37924191047284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.37924191047284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.37924191047284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.37924191047284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.37924191047284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37924191047284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37924191047284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37924191047284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37924191047284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37924191047284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37924191047284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37924191047284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37924191047284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37924191047284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37924191047284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37924191047284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34640281736634 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.34640281736634 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34640281736634 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34640281736634 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34640281736634 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34640281736634 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34640281736634 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34640281736634 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34640281736634 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34640281736634 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34640281736634 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34640281736634 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34640281736634 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34640281736634 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34640281736634 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34640281736634 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34640281736634 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3299832708131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.3299832708131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.3299832708131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.3299832708131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.3299832708131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.3299832708131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.3299832708131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.3299832708131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.3299832708131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.3299832708131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.3299832708131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3299832708131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3299832708131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3299832708131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3299832708131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3299832708131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3299832708131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31356372425985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.31356372425985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.31356372425985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.31356372425985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31356372425985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31356372425985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31356372425985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31356372425985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31356372425985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31356372425985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31356372425985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31356372425985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31356372425985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31356372425985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31356372425985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31356372425985 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31356372425985 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11715888453368 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11715888453368 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11715888453368 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11715888453368 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.00544299608031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.00544299608031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.00544299608031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.00544299608031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.00544299608031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.00544299608031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.00544299608031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.00544299608031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.00544299608031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.00544299608031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.00544299608031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.00544299608031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.00544299608031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.00544299608031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.00544299608031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00544299608031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.00544299608031 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.06130094030699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.06130094030699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.06130094030699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.06130094030699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.06130094030699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.06130094030699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.06130094030699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.06130094030699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.06130094030699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.06130094030699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.06130094030699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.06130094030699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.06130094030699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.06130094030699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.06130094030699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.06130094030699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.06130094030699 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08922991242033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.08922991242033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.08922991242033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.08922991242033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.08922991242033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.08922991242033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.08922991242033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.08922991242033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.08922991242033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08922991242033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08922991242033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08922991242033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08922991242033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08922991242033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08922991242033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08922991242033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08922991242033 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.103194398477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.103194398477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.103194398477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.103194398477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.103194398477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.103194398477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.103194398477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.103194398477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.103194398477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.103194398477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.103194398477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.103194398477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.103194398477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.103194398477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.103194398477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.103194398477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.103194398477 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11715888453368 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.11715888453368 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.11715888453368 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.11715888453368 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.11715888453368 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11715888453368 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11715888453368 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11715888453368 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11715888453368 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11715888453368 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11715888453368 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11715888453368 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11715888453368 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11715888453368 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11715888453368 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11715888453368 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11715888453368 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22356757487885 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22356757487885 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22356757487885 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22356757487885 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10121081739097 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10121081739097 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.10121081739097 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.10121081739097 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.10121081739097 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.10121081739097 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.10121081739097 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.10121081739097 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.10121081739097 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10121081739097 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10121081739097 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10121081739097 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10121081739097 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10121081739097 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10121081739097 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10121081739097 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10121081739097 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10121081739097 -9.01772687370871e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16238919613491 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.16238919613491 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.16238919613491 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.16238919613491 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.16238919613491 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.16238919613491 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.16238919613491 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.16238919613491 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.16238919613491 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.16238919613491 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.16238919613491 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16238919613491 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16238919613491 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16238919613491 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16238919613491 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16238919613491 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16238919613491 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16238919613491 -3.96315614447031e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19297838550688 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.19297838550688 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.19297838550688 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.19297838550688 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.19297838550688 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.19297838550688 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.19297838550688 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.19297838550688 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.19297838550688 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.19297838550688 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.19297838550688 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.19297838550688 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.19297838550688 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.19297838550688 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.19297838550688 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.19297838550688 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19297838550688 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.19297838550688 -1.43587077985111e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20827298019287 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.20827298019287 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.20827298019287 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.20827298019287 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.20827298019287 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.20827298019287 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.20827298019287 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.20827298019287 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.20827298019287 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.20827298019287 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.20827298019287 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20827298019287 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20827298019287 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20827298019287 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20827298019287 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20827298019287 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20827298019287 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20827298019287 -1.72228097541506e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22356757487885 -8.90869455669038e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22356757487885 -8.90869455669038e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.22356757487885 -8.90869455669038e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.22356757487885 -8.90869455669038e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.22356757487885 -8.90869455669038e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.22356757487885 -8.90869455669038e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.22356757487885 -8.90869455669038e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.22356757487885 -8.90869455669038e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.22356757487885 -8.90869455669038e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.22356757487885 -8.90869455669038e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.22356757487885 -8.90869455669038e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22356757487885 -8.90869455669038e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22356757487885 -8.90869455669038e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22356757487885 -8.90869455669038e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22356757487885 -8.90869455669038e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22356757487885 -8.90869455669038e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22356757487885 -8.90869455669038e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22356757487885 -8.90869455669038e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.609943973856615 -8.98801388187605e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.582219247772223 -3.93179243086916e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.568356884730027 -1.40368170536572e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.56142570320893 -1.39626342613996e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.554494521687832 -8.87568342276429e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171670143127526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171670143127526 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171670143127526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171670143127526 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.188837157440279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.180253650283903 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.175961896705715 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.17381601991662 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.171670143127526 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.171670143127526 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.433386519759375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.433386519759375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.433386519759375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.433386519759375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476725171735313 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.455055845747344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.44422118275336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.438803851256367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.433386519759375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.433386519759375 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2806237255845 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2806237255845 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2806237255845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2806237255845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15256135302605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.15256135302605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.15256135302605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.15256135302605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.15256135302605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.15256135302605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.15256135302605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.15256135302605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.15256135302605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.15256135302605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15256135302605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15256135302605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15256135302605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15256135302605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15256135302605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15256135302605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15256135302605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21659253930528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.21659253930528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21659253930528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21659253930528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21659253930528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21659253930528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21659253930528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21659253930528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21659253930528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21659253930528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21659253930528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21659253930528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21659253930528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21659253930528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21659253930528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21659253930528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21659253930528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24860813244489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.24860813244489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.24860813244489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.24860813244489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.24860813244489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.24860813244489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.24860813244489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.24860813244489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.24860813244489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.24860813244489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.24860813244489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.24860813244489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.24860813244489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.24860813244489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.24860813244489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24860813244489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.24860813244489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2646159290147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.2646159290147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.2646159290147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.2646159290147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.2646159290147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.2646159290147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2646159290147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2646159290147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2646159290147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2646159290147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2646159290147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2646159290147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2646159290147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2646159290147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2646159290147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2646159290147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2646159290147 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2806237255845 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.2806237255845 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.2806237255845 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.2806237255845 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.2806237255845 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.2806237255845 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.2806237255845 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.2806237255845 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.2806237255845 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.2806237255845 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.2806237255845 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.2806237255845 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2806237255845 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2806237255845 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2806237255845 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2806237255845 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2806237255845 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.798028694615863 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.798028694615863 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.798028694615863 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.798028694615863 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.718225825154276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.718225825154276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.718225825154276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.718225825154276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.718225825154276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.718225825154276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.718225825154276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.718225825154276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.718225825154276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.718225825154276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.718225825154276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.718225825154276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.718225825154276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.718225825154276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.718225825154276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.718225825154276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.718225825154276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.758127259885069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.758127259885069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.758127259885069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.758127259885069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.758127259885069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.758127259885069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.758127259885069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.758127259885069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.758127259885069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.758127259885069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.758127259885069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.758127259885069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.758127259885069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.758127259885069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.758127259885069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.758127259885069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.758127259885069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.778077977250466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.778077977250466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.778077977250466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.778077977250466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.778077977250466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.778077977250466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.778077977250466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.778077977250466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.778077977250466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.778077977250466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.778077977250466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.778077977250466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.778077977250466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.778077977250466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.778077977250466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.778077977250466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.778077977250466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.788053335933164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.788053335933164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.788053335933164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.788053335933164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.788053335933164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.788053335933164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.788053335933164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.788053335933164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.788053335933164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.788053335933164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.788053335933164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.788053335933164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.788053335933164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.788053335933164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.788053335933164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.788053335933164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.788053335933164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.798028694615863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.798028694615863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.798028694615863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.798028694615863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.798028694615863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.798028694615863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.798028694615863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.798028694615863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.798028694615863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.798028694615863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.798028694615863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.798028694615863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.798028694615863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.798028694615863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.798028694615863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.798028694615863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.798028694615863 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.31165514734362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.31165514734362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.31165514734362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.31165514734362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.18048963260926 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.18048963260926 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.18048963260926 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.18048963260926 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.18048963260926 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.18048963260926 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.18048963260926 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.18048963260926 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.18048963260926 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.18048963260926 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.18048963260926 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.18048963260926 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.18048963260926 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.18048963260926 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.18048963260926 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.18048963260926 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.18048963260926 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24607238997644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.24607238997644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.24607238997644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.24607238997644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.24607238997644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.24607238997644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.24607238997644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.24607238997644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.24607238997644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.24607238997644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.24607238997644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.24607238997644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.24607238997644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.24607238997644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.24607238997644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24607238997644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.24607238997644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27886376866003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.27886376866003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.27886376866003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.27886376866003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.27886376866003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.27886376866003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.27886376866003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.27886376866003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27886376866003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27886376866003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27886376866003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27886376866003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27886376866003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27886376866003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27886376866003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27886376866003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27886376866003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29525945800182 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.29525945800182 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.29525945800182 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.29525945800182 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.29525945800182 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.29525945800182 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.29525945800182 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.29525945800182 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.29525945800182 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.29525945800182 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.29525945800182 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.29525945800182 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.29525945800182 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.29525945800182 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.29525945800182 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29525945800182 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.29525945800182 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31165514734362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.31165514734362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.31165514734362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.31165514734362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.31165514734362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.31165514734362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.31165514734362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.31165514734362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.31165514734362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.31165514734362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.31165514734362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.31165514734362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.31165514734362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.31165514734362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.31165514734362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31165514734362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.31165514734362 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol,     ...)"